This repository was archived by the owner on Sep 6, 2023. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ QSTR_DEFS = qstrdefsport.h
6
6
MICROPY_PY_USSL = 0
7
7
MICROPY_SSL_AXTLS = 0
8
8
MICROPY_FATFS = 1
9
- MICROPY_PY_BTREE = 0
9
+ MICROPY_PY_BTREE = 1
10
10
11
11
# FROZEN_DIR = scripts
12
12
FROZEN_MPY_DIR = modules
Original file line number Diff line number Diff line change 41
41
#define MICROPY_PY_BUILTINS_COMPLEX (1)
42
42
#define MICROPY_CPYTHON_COMPAT (1)
43
43
#define MICROPY_STREAMS_NON_BLOCK (1)
44
- #define MICROPY_STREAMS_POSIX_API (0 )
44
+ #define MICROPY_STREAMS_POSIX_API (1 )
45
45
#define MICROPY_MODULE_BUILTIN_INIT (1)
46
46
#define MICROPY_MODULE_WEAK_LINKS (1)
47
47
#define MICROPY_MODULE_FROZEN_STR (0)
139
139
#define MICROPY_SSL_MBEDTLS (1)
140
140
#define MICROPY_PY_WEBSOCKET (0)
141
141
#define MICROPY_PY_FRAMEBUF (1)
142
- #define MICROPY_PY_BTREE (0)
143
142
144
143
// fatfs configuration
145
144
#define MICROPY_FATFS_ENABLE_LFN (1)
@@ -238,6 +237,8 @@ extern const struct _mp_obj_module_t mp_module_network;
238
237
typedef int32_t mp_int_t ; // must be pointer size
239
238
typedef uint32_t mp_uint_t ; // must be pointer size
240
239
typedef long mp_off_t ;
240
+ // ssize_t, off_t as required by POSIX-signatured functions in stream.h
241
+ #include <sys/types.h>
241
242
242
243
// board specifics
243
244
You can’t perform that action at this time.
0 commit comments