diff options
| author | microDev <70126934+microDev1@users.noreply.github.com> | 2020-09-26 11:15:50 +0530 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-10-27 16:17:26 -0700 |
| commit | 930cf14dcef3e3552a0e7d7476fd89b873738c2d (patch) | |
| tree | 79d76d889a82a5e5c0f89e3012fcb620a0c37142 /ports/nrf/common-hal | |
| parent | e35938971a4e9c0177e68163e1baab3b25c17ca8 (diff) | |
Add check for invalid io, function to disable all alarms
Diffstat (limited to 'ports/nrf/common-hal')
| -rw-r--r-- | ports/nrf/common-hal/microcontroller/__init__.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/common-hal/microcontroller/__init__.c b/ports/nrf/common-hal/microcontroller/__init__.c index ff6c658b8..9911896bf 100644 --- a/ports/nrf/common-hal/microcontroller/__init__.c +++ b/ports/nrf/common-hal/microcontroller/__init__.c @@ -95,7 +95,7 @@ void common_hal_mcu_reset(void) { reset_cpu(); } -void common_hal_mcu_sleep(void) { +void common_hal_mcu_deep_sleep(void) { //deep sleep call here } |
