diff options
| author | DavePutz <dwputz@gmail.com> | 2020-12-10 12:05:51 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-10 12:05:51 -0600 |
| commit | 3d5c77c601fa8297861416dde52211809c3e7b58 (patch) | |
| tree | d4d606afaabfae6632110824db0fd098521ea878 /lib | |
| parent | 3abc671bbdf617dcf87cbd4eda1201c944c05651 (diff) | |
| parent | e9fd689d576f834eff255d5f15edcad07c46e2ec (diff) | |
Merge pull request #35 from adafruit/main
Update from adafruit/main
Diffstat (limited to 'lib')
| m--------- | lib/tinyusb | 0 | ||||
| -rwxr-xr-x | lib/utils/pyexec.c | 6 | ||||
| -rw-r--r-- | lib/utils/pyexec.h | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/lib/tinyusb b/lib/tinyusb -Subproject 8b2c82255750488232eae72f3d5dcbacfd6227f +Subproject 218b80e63ab6ff87c1851e403f08b3d716d68f5 diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c index 378fb6267..68a3710ce 100755 --- a/lib/utils/pyexec.c +++ b/lib/utils/pyexec.c @@ -101,7 +101,7 @@ STATIC int parse_compile_execute(const void *source, mp_parse_input_kind_t input #endif } - // If the code was loaded from a file its likely to be running for a while so we'll long + // If the code was loaded from a file it's likely to be running for a while so we'll long // live it and collect any garbage before running. if (input_kind == MP_PARSE_FILE_INPUT) { module_fun = make_obj_long_lived(module_fun, 6); @@ -132,6 +132,10 @@ STATIC int parse_compile_execute(const void *source, mp_parse_input_kind_t input if (mp_obj_is_subclass_fast(mp_obj_get_type((mp_obj_t)nlr.ret_val), &mp_type_SystemExit)) { // at the moment, the value of SystemExit is unused ret = pyexec_system_exit; +#if CIRCUITPY_ALARM + } else if (mp_obj_is_subclass_fast(mp_obj_get_type((mp_obj_t)nlr.ret_val), &mp_type_DeepSleepRequest)) { + ret = PYEXEC_DEEP_SLEEP; +#endif } else { if ((mp_obj_t) nlr.ret_val != MP_OBJ_FROM_PTR(&MP_STATE_VM(mp_reload_exception))) { mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val); diff --git a/lib/utils/pyexec.h b/lib/utils/pyexec.h index cef72a76c..4c773cd64 100644 --- a/lib/utils/pyexec.h +++ b/lib/utils/pyexec.h @@ -49,6 +49,7 @@ extern int pyexec_system_exit; #define PYEXEC_FORCED_EXIT (0x100) #define PYEXEC_SWITCH_MODE (0x200) #define PYEXEC_EXCEPTION (0x400) +#define PYEXEC_DEEP_SLEEP (0x800) int pyexec_raw_repl(void); int pyexec_friendly_repl(void); |
