2014-04-16 17:27:23 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-06-30 08:22:17 +01:00
|
|
|
// options to control how MicroPython is built
|
2014-04-16 17:27:23 +01:00
|
|
|
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (512)
|
2014-04-21 21:00:23 +01:00
|
|
|
#define MICROPY_EMIT_X64 (0)
|
2015-01-12 12:07:42 +00:00
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (1)
|
2017-06-05 22:23:05 +01:00
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-04-16 17:27:23 +01:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (0)
|
2015-01-12 12:07:42 +00:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2015-01-09 00:10:55 +00:00
|
|
|
#define MICROPY_STACK_CHECK (1)
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_HELPER_REPL (0)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (0)
|
2015-02-16 17:45:34 +00:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2015-01-09 00:03:21 +00:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2016-11-03 01:28:31 +00:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
|
2016-03-15 13:45:32 +00:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2017-12-11 18:04:27 +00:00
|
|
|
#define MICROPY_WARNINGS (1)
|
2016-08-17 03:37:28 +01:00
|
|
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
|
2017-09-10 15:05:31 +01:00
|
|
|
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
|
2015-06-06 17:34:59 +01:00
|
|
|
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
|
2015-01-09 00:03:21 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2017-02-03 01:39:09 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_POW3 (1)
|
2016-10-13 14:08:19 +01:00
|
|
|
#define MICROPY_PY_IO (1)
|
2015-02-27 22:31:18 +00:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2015-04-04 22:04:53 +01:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2016-10-13 14:08:19 +01:00
|
|
|
#define MICROPY_PY_UERRNO (1)
|
|
|
|
#define MICROPY_PY_UBINASCII (1)
|
|
|
|
#define MICROPY_PY_URANDOM (1)
|
|
|
|
#define MICROPY_PY_UCTYPES (1)
|
|
|
|
#define MICROPY_PY_UZLIB (1)
|
|
|
|
#define MICROPY_PY_UJSON (1)
|
|
|
|
#define MICROPY_PY_URE (1)
|
|
|
|
#define MICROPY_PY_UHEAPQ (1)
|
|
|
|
#define MICROPY_PY_UHASHLIB (1)
|
2017-03-02 05:39:58 +00:00
|
|
|
#define MICROPY_PY_MACHINE (1)
|
2017-06-05 22:23:05 +01:00
|
|
|
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
|
2018-09-24 03:09:28 +01:00
|
|
|
#define MICROPY_USE_INTERNAL_PRINTF (1)
|
2017-03-13 10:24:21 +00:00
|
|
|
#define MICROPY_VFS (1)
|
2014-04-16 17:27:23 +01:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2014-08-24 16:28:17 +01:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void*)((mp_uint_t)(p) | 1))
|
|
|
|
|
2015-04-04 22:04:53 +01:00
|
|
|
#define MP_SSIZE_MAX (0x7fffffff)
|
|
|
|
|
2014-04-16 17:27:23 +01:00
|
|
|
#define UINT_FMT "%lu"
|
|
|
|
#define INT_FMT "%ld"
|
|
|
|
|
2014-07-03 13:25:24 +01:00
|
|
|
typedef int32_t mp_int_t; // must be pointer size
|
|
|
|
typedef uint32_t mp_uint_t; // must be pointer size
|
2014-11-16 22:16:14 +00:00
|
|
|
typedef long mp_off_t;
|
2014-04-16 17:27:23 +01:00
|
|
|
|
2014-04-21 21:00:23 +01:00
|
|
|
// extra built in names to add to the global namespace
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2017-08-21 12:34:23 +01:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
|
2014-04-21 21:00:23 +01:00
|
|
|
|
2017-03-13 10:24:21 +00:00
|
|
|
// extra built-in modules to add to the list of known ones
|
|
|
|
extern const struct _mp_obj_module_t mp_module_uos;
|
|
|
|
|
2017-03-02 05:39:58 +00:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2017-03-13 10:24:21 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uos), MP_ROM_PTR(&mp_module_uos) }, \
|
2017-03-02 05:39:58 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_umachine), MP_ROM_PTR(&mp_module_machine) }, \
|
|
|
|
|
2014-06-08 13:25:33 +01:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
#include <alloca.h>
|
2017-12-11 18:04:27 +00:00
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
#include "lib/upytesthelper/upytesthelper.h"
|
|
|
|
#undef MP_PLAT_PRINT_STRN
|
|
|
|
#define MP_PLAT_PRINT_STRN(str, len) upytest_output(str, len)
|
|
|
|
#endif
|