This commit is contained in:
Scott Shawcroft 2020-04-02 17:36:09 -07:00
parent 46af4bdd0e
commit c248730bd1
No known key found for this signature in database
GPG Key ID: 9349BC7E64B1921E
2 changed files with 2 additions and 3 deletions

View File

@ -300,7 +300,7 @@ $(filter $(SRC_PATTERNS), \
fontio/Glyph.c \
microcontroller/RunMode.c \
math/__init__.c \
_eve/__init__.c \
_eve/__init__.c \
)
SRC_BINDINGS_ENUMS += \
@ -364,7 +364,7 @@ SRC_SHARED_MODULE_ALL = \
ustack/__init__.c \
_pew/__init__.c \
_pew/PewPew.c \
_eve/__init__.c
_eve/__init__.c
# All possible sources are listed here, and are filtered by SRC_PATTERNS.
SRC_SHARED_MODULE = $(filter $(SRC_PATTERNS), $(SRC_SHARED_MODULE_ALL))

View File

@ -110,7 +110,6 @@ void mp_hal_delay_ms(mp_uint_t delay) {
}
// Sleep until an interrupt happens.
port_sleep_until_interrupt();
// asm("bkpt");
duration = (port_get_raw_ticks(NULL) - start_tick);
port_interrupt_after_ticks(duration);
}