2017-02-24 12:19:00 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/compile.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/stackctrl.h"
|
|
|
|
#include "py/repl.h"
|
|
|
|
#include "py/gc.h"
|
2017-03-26 21:11:57 +00:00
|
|
|
#include "py/mperrno.h"
|
2017-02-24 12:19:00 +00:00
|
|
|
#include "lib/utils/pyexec.h"
|
|
|
|
|
2017-03-07 13:50:09 +00:00
|
|
|
#include "gccollect.h"
|
2017-02-24 12:19:00 +00:00
|
|
|
#include "pendsv.h"
|
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "display.h"
|
2017-03-07 14:52:19 +00:00
|
|
|
#include "flash.h"
|
|
|
|
#include "rng.h"
|
|
|
|
#include "sdcard.h"
|
|
|
|
#include "touch.h"
|
2017-03-24 15:38:46 +00:00
|
|
|
|
2017-10-11 19:15:22 +00:00
|
|
|
int main(void)
|
2017-09-28 12:08:08 +00:00
|
|
|
{
|
2017-02-24 12:19:00 +00:00
|
|
|
pendsv_init();
|
|
|
|
|
2017-10-11 19:15:22 +00:00
|
|
|
display_orientation(0);
|
2017-09-28 12:08:08 +00:00
|
|
|
|
2017-10-12 14:06:53 +00:00
|
|
|
ensure(0 == sdcard_init(), NULL);
|
|
|
|
ensure(0 == touch_init(), NULL);
|
2017-03-07 14:52:19 +00:00
|
|
|
|
2017-02-24 12:19:00 +00:00
|
|
|
for (;;) {
|
2017-05-15 17:33:35 +00:00
|
|
|
printf("CORE: Starting main loop\n");
|
2017-02-24 12:19:00 +00:00
|
|
|
// Stack limit should be less than real stack size, so we have a chance
|
|
|
|
// to recover from limit hit.
|
|
|
|
mp_stack_set_top(&_estack);
|
|
|
|
mp_stack_set_limit((char*)&_estack - (char*)&_heap_end - 1024);
|
|
|
|
|
|
|
|
// GC init
|
|
|
|
gc_init(&_heap_start, &_heap_end);
|
|
|
|
|
|
|
|
// Interpreter init
|
|
|
|
mp_init();
|
|
|
|
mp_obj_list_init(mp_sys_argv, 0);
|
|
|
|
mp_obj_list_init(mp_sys_path, 0);
|
|
|
|
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script)
|
|
|
|
|
|
|
|
// Run the main script
|
2017-05-15 17:33:35 +00:00
|
|
|
printf("CORE: Executing main script\n");
|
2017-02-24 12:19:00 +00:00
|
|
|
pyexec_frozen_module("main.py");
|
|
|
|
|
2017-05-15 15:57:04 +00:00
|
|
|
// Run REPL
|
2017-05-15 17:33:35 +00:00
|
|
|
printf("CORE: Executing REPL\n");
|
2017-05-15 15:57:04 +00:00
|
|
|
for (;;) {
|
|
|
|
if (pyexec_friendly_repl() != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 12:19:00 +00:00
|
|
|
// Clean up
|
|
|
|
mp_deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-11 18:01:22 +00:00
|
|
|
// MicroPython default exception handler
|
|
|
|
|
|
|
|
void __attribute__((noreturn)) nlr_jump_fail(void *val) {
|
2017-10-12 14:06:53 +00:00
|
|
|
ensure(0, "uncaught exception");
|
2017-10-11 18:01:22 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 21:11:59 +00:00
|
|
|
void PendSV_Handler(void) {
|
|
|
|
pendsv_isr_handler();
|
|
|
|
}
|
|
|
|
|
2017-10-11 18:01:22 +00:00
|
|
|
// MicroPython file I/O stubs
|
2017-02-24 12:19:00 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2017-03-26 21:11:57 +00:00
|
|
|
void mp_reader_new_file(mp_reader_t *reader, const char *filename) {
|
|
|
|
mp_raise_OSError(MP_ENOENT); // assume "file not found"
|
2017-03-06 16:33:42 +00:00
|
|
|
}
|