File tree Expand file tree Collapse file tree 5 files changed +3
-6
lines changed
circuitplayground_express_crickit
circuitplayground_express Expand file tree Collapse file tree 5 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ LONGINT_IMPL = MPZ
12
12
# Make room for frozen libs.
13
13
CIRCUITPY_DISPLAYIO = 0
14
14
CIRCUITPY_FREQUENCYIO = 0
15
+ CIRCUITPY_I2CSLAVE = 0
15
16
16
17
CHIP_VARIANT = SAMD21G18A
17
18
CHIP_FAMILY = samd21
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ LONGINT_IMPL = NONE
13
13
CIRCUITPY_DISPLAYIO = 0
14
14
CIRCUITPY_PIXELBUF = 0
15
15
CIRCUITPY_FREQUENCYIO = 0
16
+ CIRCUITPY_I2CSLAVE = 0
16
17
17
18
CHIP_VARIANT = SAMD21G18A
18
19
CHIP_FAMILY = samd21
Original file line number Diff line number Diff line change 35
35
#define MICROPY_PY_SYS_PLATFORM "Atmel SAMD21"
36
36
#define SPI_FLASH_MAX_BAUDRATE 8000000
37
37
#define CIRCUITPY_DEFAULT_STACK_SIZE 4096
38
-
39
- #define MICROPY_CPYTHON_COMPAT (0)
40
38
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
41
39
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
42
40
#define MICROPY_PY_FUNCTION_ATTRS (0)
64
62
#define SPI_FLASH_MAX_BAUDRATE 24000000
65
63
// 24kiB stack
66
64
#define CIRCUITPY_DEFAULT_STACK_SIZE 0x6000
67
- #define MICROPY_CPYTHON_COMPAT (1)
68
65
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
69
66
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
70
67
#define MICROPY_PY_FUNCTION_ATTRS (1)
Original file line number Diff line number Diff line change 30
30
31
31
#include "ble_drv.h"
32
32
33
- #define MICROPY_CPYTHON_COMPAT (1)
34
- //#define MICROPY_MODULE_BUILTIN_INIT (1) // TODO check this
35
- //#define MICROPY_MODULE_WEAK_LINKS (1) // TODO check this
36
33
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
37
34
#define MICROPY_PY_FUNCTION_ATTRS (1)
38
35
#define MICROPY_PY_IO (1)
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ typedef long mp_off_t;
177
177
178
178
// Remove some lesser-used functionality to make small builds fit.
179
179
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (CIRCUITPY_FULL_BUILD)
180
+ #define MICROPY_CPYTHON_COMPAT (CIRCUITPY_FULL_BUILD)
180
181
#define MICROPY_MODULE_WEAK_LINKS (CIRCUITPY_FULL_BUILD)
181
182
#define MICROPY_PY_ALL_SPECIAL_METHODS (CIRCUITPY_FULL_BUILD)
182
183
#define MICROPY_PY_BUILTINS_COMPLEX (CIRCUITPY_FULL_BUILD)
You can’t perform that action at this time.
0 commit comments