File tree Expand file tree Collapse file tree 5 files changed +3
-4
lines changed Expand file tree Collapse file tree 5 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 92
92
93
93
#if CIRCUITPY_DISPLAYIO
94
94
#include "shared-module/displayio/__init__.h"
95
+ #include "shared-bindings/displayio/__init__.h"
95
96
#endif
96
97
97
98
#if CIRCUITPY_EPAPERDISPLAY
Original file line number Diff line number Diff line change 27
27
#include <string.h>
28
28
29
29
#include "shared-module/displayio/__init__.h"
30
+ #include "shared-bindings/displayio/__init__.h"
30
31
31
32
#include "shared/runtime/interrupt_char.h"
32
33
#include "py/runtime.h"
38
39
#include "supervisor/shared/display.h"
39
40
#include "supervisor/shared/reload.h"
40
41
41
- #include "supervisor/spi_flash_api.h"
42
42
#include "py/mpconfig.h"
43
43
44
44
#if CIRCUITPY_BUSDISPLAY
Original file line number Diff line number Diff line change 26
26
27
27
#pragma once
28
28
29
- #include "shared-bindings/digitalio/DigitalInOut.h"
30
29
#include "shared-bindings/displayio/Group.h"
31
30
32
31
#include "shared-module/displayio/area.h"
Original file line number Diff line number Diff line change 31
31
#include "py/obj.h"
32
32
#include "py/proto.h"
33
33
34
- #include "shared-bindings/digitalio/DigitalInOut.h"
35
34
#include "shared-bindings/displayio/Group.h"
36
35
37
36
#include "shared-module/displayio/area.h"
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ bool shared_module_supervisor_status_bar_get_display(supervisor_status_bar_obj_t
60
60
return self -> display ;
61
61
}
62
62
63
- #if CIRCUITPY_TERMINALIO
63
+ #if CIRCUITPY_STATUS_BAR && CIRCUITPY_TERMINALIO
64
64
void shared_module_supervisor_status_bar_set_display (supervisor_status_bar_obj_t * self , bool enabled ) {
65
65
if (self -> display == enabled ) {
66
66
// Do nothing if not changing the state.
You can’t perform that action at this time.
0 commit comments