2015-01-12 20:17:47 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-06-30 03:22:17 -04:00
|
|
|
// options to control how MicroPython is built
|
2015-01-12 20:17:47 -05:00
|
|
|
|
2021-09-14 22:24:32 -04:00
|
|
|
// Use the minimal starting configuration (disables all optional features).
|
|
|
|
#define MICROPY_CONFIG_ROM_LEVEL (MICROPY_CONFIG_ROM_LEVEL_MINIMUM)
|
|
|
|
|
2017-02-26 23:09:15 -05:00
|
|
|
// You can disable the built-in MicroPython compiler by setting the following
|
|
|
|
// config option to 0. If you do this then you won't get a REPL prompt, but you
|
|
|
|
// will still be able to execute pre-compiled scripts, compiled with mpy-cross.
|
|
|
|
#define MICROPY_ENABLE_COMPILER (1)
|
|
|
|
|
2021-09-14 22:24:32 -04:00
|
|
|
#define MICROPY_QSTR_EXTRA_POOL mp_qstr_frozen_const_pool
|
|
|
|
#define MICROPY_ENABLE_GC (1)
|
|
|
|
#define MICROPY_HELPER_REPL (1)
|
|
|
|
#define MICROPY_MODULE_FROZEN_MPY (1)
|
|
|
|
#define MICROPY_ENABLE_EXTERNAL_IMPORT (1)
|
|
|
|
|
|
|
|
#define MICROPY_ALLOC_PATH_MAX (256)
|
|
|
|
#define MICROPY_ALLOC_PARSE_CHUNK_INIT (16)
|
|
|
|
|
2015-01-12 20:17:47 -05:00
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2020-05-29 17:35:19 -04:00
|
|
|
typedef intptr_t mp_int_t; // must be pointer size
|
|
|
|
typedef uintptr_t mp_uint_t; // must be pointer size
|
2015-01-12 20:17:47 -05:00
|
|
|
typedef long mp_off_t;
|
|
|
|
|
|
|
|
// extra built in names to add to the global namespace
|
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2017-08-21 07:34:23 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
|
2015-01-12 20:17:47 -05:00
|
|
|
|
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
#include <alloca.h>
|
2015-01-12 21:02:56 -05:00
|
|
|
|
|
|
|
#define MICROPY_HW_BOARD_NAME "minimal"
|
|
|
|
#define MICROPY_HW_MCU_NAME "unknown-cpu"
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
#define MICROPY_MIN_USE_STDOUT (1)
|
|
|
|
#endif
|
|
|
|
|
2016-01-07 12:43:07 -05:00
|
|
|
#ifdef __thumb__
|
|
|
|
#define MICROPY_MIN_USE_CORTEX_CPU (1)
|
|
|
|
#define MICROPY_MIN_USE_STM32_MCU (1)
|
|
|
|
#endif
|
|
|
|
|
2015-01-12 21:02:56 -05:00
|
|
|
#define MP_STATE_PORT MP_STATE_VM
|
|
|
|
|
|
|
|
#define MICROPY_PORT_ROOT_POINTERS \
|
|
|
|
const char *readline_hist[8];
|