2014-04-16 12:27:23 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (512)
|
2014-04-21 16:00:23 -04:00
|
|
|
#define MICROPY_EMIT_X64 (0)
|
2015-01-12 07:07:42 -05:00
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (1)
|
2017-06-05 17:23:05 -04:00
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-04-16 12:27:23 -04:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (0)
|
2015-01-12 07:07:42 -05:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2015-01-08 19:10:55 -05:00
|
|
|
#define MICROPY_STACK_CHECK (1)
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_HELPER_REPL (0)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (0)
|
2015-02-16 12:45:34 -05:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2015-01-08 19:03:21 -05:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2016-11-02 21:28:31 -04:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
|
2016-03-15 09:45:32 -04:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2016-08-16 22:37:28 -04:00
|
|
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
|
2015-06-06 12:34:59 -04:00
|
|
|
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
|
2015-01-08 19:03:21 -05:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2017-02-02 20:39:09 -05:00
|
|
|
#define MICROPY_PY_BUILTINS_POW3 (1)
|
2016-10-13 09:08:19 -04:00
|
|
|
#define MICROPY_PY_IO (1)
|
2015-02-27 17:31:18 -05:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2015-04-04 17:04:53 -04:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2016-10-13 09:08:19 -04: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 00:39:58 -05:00
|
|
|
#define MICROPY_PY_MACHINE (1)
|
2017-06-05 17:23:05 -04:00
|
|
|
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
|
2016-08-21 05:33:37 -04:00
|
|
|
#define MICROPY_USE_INTERNAL_PRINTF (0)
|
2017-03-13 06:24:21 -04:00
|
|
|
#define MICROPY_VFS (1)
|
2014-04-16 12:27:23 -04:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2014-08-24 11:28:17 -04:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void*)((mp_uint_t)(p) | 1))
|
|
|
|
|
2015-04-04 17:04:53 -04:00
|
|
|
#define MP_SSIZE_MAX (0x7fffffff)
|
|
|
|
|
2014-04-16 12:27:23 -04:00
|
|
|
#define UINT_FMT "%lu"
|
|
|
|
#define INT_FMT "%ld"
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef int32_t mp_int_t; // must be pointer size
|
|
|
|
typedef uint32_t mp_uint_t; // must be pointer size
|
2014-11-16 17:16:14 -05:00
|
|
|
typedef long mp_off_t;
|
2014-04-16 12:27:23 -04:00
|
|
|
|
2015-10-14 19:05:55 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
#define MP_PLAT_PRINT_STRN(str, len) write(1, str, len)
|
|
|
|
|
2014-04-21 16:00:23 -04:00
|
|
|
// extra built in names to add to the global namespace
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2014-04-21 16:00:23 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|
|
|
|
|
2017-03-13 06:24:21 -04: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 00:39:58 -05:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2017-03-13 06:24:21 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_uos), MP_ROM_PTR(&mp_module_uos) }, \
|
2017-03-02 00:39:58 -05:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_umachine), MP_ROM_PTR(&mp_module_machine) }, \
|
|
|
|
|
2014-06-08 08:25:33 -04:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
#include <alloca.h>
|