File tree Expand file tree Collapse file tree 6 files changed +9
-0
lines changed Expand file tree Collapse file tree 6 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ CIRCUITPY_PS2IO = 0
27
27
CIRCUITPY_RGBMATRIX = 0
28
28
CIRCUITPY_ROTARYIO = 0
29
29
CIRCUITPY_TOUCHIO = 0
30
+ CIRCUITPY_USB_HID = 0
31
+ CIRCUITPY_USB_MIDI = 0
30
32
31
33
CIRCUITPY_ULAB = 0
32
34
Original file line number Diff line number Diff line change 46
46
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
47
47
#define MICROPY_PY_FUNCTION_ATTRS (0)
48
48
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
49
+ #define MICROPY_PY_COLLECTIONS_DEQUE (0)
49
50
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
50
51
#define MICROPY_PY_UERRNO_LIST \
51
52
X(EPERM) \
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ CIRCUITPY_COUNTIO = 0
23
23
CIRCUITPY_DISPLAYIO = 0
24
24
CIRCUITPY_FRAMEBUFFERIO = 0
25
25
CIRCUITPY_FREQUENCYIO = 0
26
+ CIRCUITPY_GETPASS = 0
26
27
CIRCUITPY_I2CPERIPHERAL = 0
27
28
CIRCUITPY_JSON = 0
28
29
CIRCUITPY_KEYPAD = 1
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ CIRCUITPY_COUNTIO = 0
18
18
CIRCUITPY_DISPLAYIO = 0
19
19
CIRCUITPY_FRAMEBUFFERIO = 0
20
20
CIRCUITPY_FREQUENCYIO = 0
21
+ CIRCUITPY_GETPASS = 0
21
22
CIRCUITPY_I2CPERIPHERAL = 0
22
23
CIRCUITPY_JSON = 0
23
24
CIRCUITPY_KEYPAD = 0
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ CIRCUITPY_ALARM = 0
14
14
CIRCUITPY_AESIO = 1
15
15
CIRCUITPY_AUDIOMIXER = 0
16
16
CIRCUITPY_AUDIOMP3 = 0
17
+ CIRCUITPY_BITBANGIO = 0
17
18
CIRCUITPY_BITMAPTOOLS = 0
18
19
CIRCUITPY_BUSDEVICE = 0
19
20
CIRCUITPY_BUSIO = 1
Original file line number Diff line number Diff line change @@ -226,6 +226,9 @@ typedef long mp_off_t;
226
226
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
227
227
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (CIRCUITPY_FULL_BUILD)
228
228
#endif
229
+ #ifndef MICROPY_PY_COLLECTIONS_DEQUE
230
+ #define MICROPY_PY_COLLECTIONS_DEQUE (CIRCUITPY_FULL_BUILD)
231
+ #endif
229
232
#define MICROPY_PY_URE_MATCH_GROUPS (CIRCUITPY_RE)
230
233
#define MICROPY_PY_URE_MATCH_SPAN_START_END (CIRCUITPY_RE)
231
234
#define MICROPY_PY_URE_SUB (CIRCUITPY_RE)
You can’t perform that action at this time.
0 commit comments