File tree Expand file tree Collapse file tree 7 files changed +1
-7
lines changed Expand file tree Collapse file tree 7 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 43
43
#define MICROPY_PY_SYS_PLATFORM "Atmel SAMD21"
44
44
#define SPI_FLASH_MAX_BAUDRATE 8000000
45
45
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
46
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
47
46
#define MICROPY_PY_FUNCTION_ATTRS (0)
48
47
// MICROPY_PY_UJSON depends on MICROPY_PY_IO
49
48
#define MICROPY_PY_IO (0)
81
80
#endif
82
81
#define SPI_FLASH_MAX_BAUDRATE 24000000
83
82
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
84
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
85
83
#define MICROPY_PY_FUNCTION_ATTRS (1)
86
84
// MICROPY_PY_UJSON depends on MICROPY_PY_IO
87
85
#define MICROPY_PY_IO (1)
Original file line number Diff line number Diff line change 30
30
31
31
#define CIRCUITPY_INTERNAL_NVM_SIZE (0)
32
32
#define MICROPY_NLR_THUMB (0)
33
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
34
33
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
35
34
#define MICROPY_PY_UBINASCII (1)
36
35
#define MICROPY_PY_UJSON (1)
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ extern uint8_t _ld_default_stack_size;
40
40
// 20kiB stack
41
41
#define CIRCUITPY_DEFAULT_STACK_SIZE ((uint32_t) &_ld_default_stack_size)
42
42
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
43
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
44
43
#define MICROPY_PY_FUNCTION_ATTRS (0)
45
44
#define MICROPY_PY_IO (1)
46
45
#define MICROPY_PY_UJSON (1)
Original file line number Diff line number Diff line change 34
34
#include "nrf_sdm.h" // for SD_FLASH_SIZE
35
35
#include "peripherals/nrf/nvm.h" // for FLASH_PAGE_SIZE
36
36
37
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
38
37
#define MICROPY_PY_FUNCTION_ATTRS (1)
39
38
#define MICROPY_PY_IO (1)
40
39
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
Original file line number Diff line number Diff line change 30
30
31
31
#include <stdint.h>
32
32
33
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
34
33
#define MICROPY_PY_FUNCTION_ATTRS (1)
35
34
#define MICROPY_PY_IO (1)
36
35
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
Original file line number Diff line number Diff line change 99
99
#define MICROPY_PY_SYS_STDFILES (1)
100
100
#define MICROPY_PY_SYS_EXC_INFO (1)
101
101
#define MICROPY_PY_COLLECTIONS_DEQUE (1)
102
- #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
103
102
#ifndef MICROPY_PY_MATH_SPECIAL_FUNCTIONS
104
103
#define MICROPY_PY_MATH_SPECIAL_FUNCTIONS (1)
105
104
#endif
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ typedef long mp_off_t;
195
195
#define MICROPY_PY_BUILTINS_STR_PARTITION (CIRCUITPY_FULL_BUILD)
196
196
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (CIRCUITPY_FULL_BUILD)
197
197
#define MICROPY_PY_UERRNO (CIRCUITPY_FULL_BUILD)
198
+ #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (CIRCUITPY_FULL_BUILD)
198
199
// Opposite setting is deliberate.
199
200
#define MICROPY_PY_UERRNO_ERRORCODE (!CIRCUITPY_FULL_BUILD)
200
201
#ifndef MICROPY_PY_URE
You can’t perform that action at this time.
0 commit comments