diff options
author | Damien George <damien.p.george@gmail.com> | 2014-11-27 20:30:33 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-27 20:30:33 +0000 |
commit | 075d597464be619475535930de2f36abe69176f8 (patch) | |
tree | 286b765fb8e3c3dc1c741eb825fd7ef49e7e4946 /esp8266/main.c | |
parent | 2399aa03b81e6a23f0b2719196c07101884222be (diff) |
esp8266: New port of Micro Python to ESP8266 wifi module.
Diffstat (limited to 'esp8266/main.c')
-rw-r--r-- | esp8266/main.c | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/esp8266/main.c b/esp8266/main.c new file mode 100644 index 000000000..bab79d6fc --- /dev/null +++ b/esp8266/main.c @@ -0,0 +1,94 @@ +/* + * This file is part of the Micro Python project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright (c) 2014 Damien P. George + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#include <stdio.h> +#include <string.h> + +#include "mpconfig.h" +#include "nlr.h" +#include "misc.h" +#include "qstr.h" +#include "lexer.h" +#include "parse.h" +#include "obj.h" +#include "parsehelper.h" +#include "compile.h" +#include "runtime0.h" +#include "runtime.h" +#include "gc.h" +#include "pyexec.h" +#include "gccollect.h" +#include MICROPY_HAL_H + +void user_init(void) { + //mp_stack_set_limit((char*)&_ram_end - (char*)&_heap_end - 1024); + mp_hal_init(); + gc_init(&_heap_start, &_heap_end); + gc_collect_init(); + mp_init(); + mp_obj_list_init(mp_sys_path, 0); + mp_obj_list_init(mp_sys_argv, 0); + + printf("\n"); + + for (;;) { + if (pyexec_mode_kind == PYEXEC_MODE_RAW_REPL) { + if (pyexec_raw_repl() != 0) { + break; + } + } else { + if (pyexec_friendly_repl() != 0) { + break; + } + } + } +} + +mp_lexer_t *mp_lexer_new_from_file(const char *filename) { + return NULL; +} + +mp_import_stat_t mp_import_stat(const char *path) { + return MP_IMPORT_STAT_NO_EXIST; +} + +mp_obj_t mp_builtin_open(uint n_args, const mp_obj_t *args, mp_map_t *kwargs) { + return mp_const_none; +} +MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open); + +void nlr_jump_fail(void *val) { + printf("NLR jump failed\n"); + for (;;) { + } +} + +//void __assert(const char *file, int line, const char *func, const char *expr) { +void __assert(const char *file, int line, const char *expr) { + printf("Assertion '%s' failed, at file %s:%d\n", expr, file, line); + for (;;) { + } +} |