2014-04-12 12:07:45 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2015-07-20 11:03:13 +00:00
|
|
|
#define MICROPY_QSTR_BYTES_IN_HASH (1)
|
2014-05-21 19:32:59 +00:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (512)
|
2014-04-12 12:07:45 +00:00
|
|
|
#define MICROPY_EMIT_X64 (0)
|
|
|
|
#define MICROPY_EMIT_THUMB (0)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (0)
|
2015-01-10 14:07:24 +00:00
|
|
|
#define MICROPY_COMP_MODULE_CONST (0)
|
|
|
|
#define MICROPY_COMP_CONST (0)
|
2015-03-14 13:11:35 +00:00
|
|
|
#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (0)
|
|
|
|
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (0)
|
2014-04-12 12:07:45 +00:00
|
|
|
#define MICROPY_MEM_STATS (0)
|
|
|
|
#define MICROPY_DEBUG_PRINTERS (0)
|
|
|
|
#define MICROPY_ENABLE_GC (0)
|
2014-05-21 19:32:59 +00:00
|
|
|
#define MICROPY_HELPER_REPL (0)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (0)
|
2014-04-12 12:07:45 +00:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (0)
|
2014-11-06 17:36:16 +00:00
|
|
|
#define MICROPY_ENABLE_DOC_STRING (0)
|
|
|
|
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_TERSE)
|
2015-06-19 12:49:10 +00:00
|
|
|
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (0)
|
2016-04-13 14:31:30 +00:00
|
|
|
#define MICROPY_PY_ASYNC_AWAIT (0)
|
2014-06-27 17:43:35 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_BYTEARRAY (0)
|
2014-10-23 12:34:35 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (0)
|
2015-08-02 19:55:37 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_ENUMERATE (0)
|
2014-06-01 12:49:54 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (0)
|
2015-08-02 19:55:37 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_REVERSED (0)
|
2014-06-01 12:49:54 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_SET (0)
|
|
|
|
#define MICROPY_PY_BUILTINS_SLICE (0)
|
2014-06-01 12:32:54 +00:00
|
|
|
#define MICROPY_PY_BUILTINS_PROPERTY (0)
|
2014-09-08 09:45:23 +00:00
|
|
|
#define MICROPY_PY___FILE__ (0)
|
2014-08-12 19:16:03 +00:00
|
|
|
#define MICROPY_PY_GC (0)
|
2014-06-27 17:43:35 +00:00
|
|
|
#define MICROPY_PY_ARRAY (0)
|
2015-04-21 14:14:24 +00:00
|
|
|
#define MICROPY_PY_ATTRTUPLE (0)
|
2014-05-24 22:03:12 +00:00
|
|
|
#define MICROPY_PY_COLLECTIONS (0)
|
|
|
|
#define MICROPY_PY_MATH (0)
|
|
|
|
#define MICROPY_PY_CMATH (0)
|
|
|
|
#define MICROPY_PY_IO (0)
|
|
|
|
#define MICROPY_PY_STRUCT (0)
|
|
|
|
#define MICROPY_PY_SYS (0)
|
2014-04-13 12:19:28 +00:00
|
|
|
#define MICROPY_CPYTHON_COMPAT (0)
|
2014-04-12 12:07:45 +00:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
|
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_NONE)
|
2016-08-21 09:33:37 +00:00
|
|
|
#define MICROPY_USE_INTERNAL_PRINTF (0)
|
2014-04-12 12:07:45 +00:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
|
|
|
#define BYTES_PER_WORD (4)
|
|
|
|
|
2014-08-24 15:28:17 +00:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void*)((mp_uint_t)(p) | 1))
|
|
|
|
|
2014-04-12 12:07:45 +00:00
|
|
|
#define UINT_FMT "%lu"
|
|
|
|
#define INT_FMT "%ld"
|
|
|
|
|
2014-07-03 12:25:24 +00: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-12 12:07:45 +00:00
|
|
|
|
2015-10-14 23:05:55 +00:00
|
|
|
// dummy print
|
|
|
|
#define MP_PLAT_PRINT_STRN(str, len) (void)0
|
|
|
|
|
2014-04-12 12:07:45 +00:00
|
|
|
// extra built in names to add to the global namespace
|
2014-05-21 19:32:59 +00:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2014-04-12 12:07:45 +00:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|
|
|
|
|
2014-06-08 12:25:33 +00:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
|
|
#include <alloca.h>
|