diff options
| author | microDev <70126934+microDev1@users.noreply.github.com> | 2020-12-18 00:44:00 +0530 |
|---|---|---|
| committer | microDev <70126934+microDev1@users.noreply.github.com> | 2020-12-18 00:44:00 +0530 |
| commit | 4512290ba056122ed44aa85d80eead98f813c8d8 (patch) | |
| tree | e54d0f78bd5a18d53e80034dc7bb02160b3e2f46 /py | |
| parent | 4863413bc9aa3104f2c983efa43bf3afa028b80b (diff) | |
| parent | 8f9cd7075e706b714ff0166414f399d521f6302b (diff) | |
Merge branch 'main' into ota-s2
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_defns.mk | 1 | ||||
| -rw-r--r-- | py/obj.c | 1 | ||||
| -rw-r--r-- | py/py.mk | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk index a87147914..94f8ba42e 100644 --- a/py/circuitpy_defns.mk +++ b/py/circuitpy_defns.mk @@ -307,6 +307,7 @@ SRC_COMMON_HAL_ALL = \ _bleio/__init__.c \ _pew/PewPew.c \ _pew/__init__.c \ + alarm/SleepMemory.c \ alarm/__init__.c \ alarm/pin/PinAlarm.c \ alarm/time/TimeAlarm.c \ @@ -125,7 +125,6 @@ void mp_obj_print_exception(const mp_print_t *print, mp_obj_t exc) { mp_printf(print, decompressed_block, block); } } - mp_obj_exception_clear_traceback(exc); } } mp_obj_print_helper(print, exc, PRINT_EXC); @@ -19,7 +19,7 @@ endif QSTR_GLOBAL_DEPENDENCIES += $(PY_SRC)/mpconfig.h mpconfigport.h # some code is performance bottleneck and compiled with other optimization options -_CSUPEROPT = -O3 +CSUPEROPT = -O3 # this sets the config file for FatFs CFLAGS_MOD += -DFFCONF_H=\"lib/oofatfs/ffconf.h\" |
