8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6a544b commit 1a01ed0Copy full SHA for 1a01ed0
zephyr/mpconfigport.h
@@ -1,5 +1,8 @@
1
#include <alloca.h>
2
3
+// Include Zephyr's autoconf.h, which should be made first by Zephyr makefiles
4
+#include "autoconf.h"
5
+
6
// Saving extra crumbs to make sure binary fits in 128K
7
#define MICROPY_COMP_CONST_FOLDING (0)
8
#define MICROPY_COMP_CONST (0)
@@ -49,9 +52,6 @@ typedef long mp_off_t;
49
52
mp_obj_t mp_kbd_exception; \
50
53
const char *readline_hist[8];
51
54
-// Include Zephyr's autoconf.h, which should be made first by Zephyr makefiles
-#include "autoconf.h"
-
55
// extra built in names to add to the global namespace
56
#define MICROPY_PORT_BUILTINS \
57
{ MP_OBJ_NEW_QSTR(MP_QSTR_help), (mp_obj_t)&mp_builtin_help_obj }, \
0 commit comments