diff options
| author | microDev <70126934+microDev1@users.noreply.github.com> | 2020-09-25 03:32:31 +0530 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-10-27 16:16:55 -0700 |
| commit | e35938971a4e9c0177e68163e1baab3b25c17ca8 (patch) | |
| tree | 4b6a64d759e64b92d166706909766ac6300f3b23 /ports/cxd56 | |
| parent | 59df1a11ade4a39d079c9f418740b45b4d6121ce (diff) | |
Add description of alarm modules
Diffstat (limited to 'ports/cxd56')
| -rw-r--r-- | ports/cxd56/common-hal/microcontroller/__init__.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/cxd56/common-hal/microcontroller/__init__.c b/ports/cxd56/common-hal/microcontroller/__init__.c index 7aa3b839d..4379f9be6 100644 --- a/ports/cxd56/common-hal/microcontroller/__init__.c +++ b/ports/cxd56/common-hal/microcontroller/__init__.c @@ -81,6 +81,10 @@ void common_hal_mcu_reset(void) { boardctl(BOARDIOC_RESET, 0); } +void common_hal_mcu_sleep(void) { + //deep sleep call here +} + STATIC const mp_rom_map_elem_t mcu_pin_globals_table[] = { { MP_ROM_QSTR(MP_QSTR_UART2_RXD), MP_ROM_PTR(&pin_UART2_RXD) }, { MP_ROM_QSTR(MP_QSTR_UART2_TXD), MP_ROM_PTR(&pin_UART2_TXD) }, |
