diff options
| author | Dan Halbert <halbert@halwitz.org> | 2020-11-22 19:10:09 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2020-11-22 19:10:09 -0500 |
| commit | a0f1ec3c4a3dd52b11752e10d0dd31202e9c705f (patch) | |
| tree | 333234f72abc302da7646f87a3c18740170b6bf7 /ports/litex | |
| parent | 75559f35ccc946dfd292e25671919e5d5b3bd7a6 (diff) | |
wip
Diffstat (limited to 'ports/litex')
| -rw-r--r-- | ports/litex/common-hal/microcontroller/__init__.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/litex/common-hal/microcontroller/__init__.c b/ports/litex/common-hal/microcontroller/__init__.c index 3c9166114..e6f50ed5a 100644 --- a/ports/litex/common-hal/microcontroller/__init__.c +++ b/ports/litex/common-hal/microcontroller/__init__.c @@ -89,6 +89,10 @@ void common_hal_mcu_reset(void) { while(1); } +void common_hal_mcu_deep_sleep(void) { + //deep sleep call here +} + // The singleton microcontroller.Processor object, bound to microcontroller.cpu // It currently only has properties, and no state. const mcu_processor_obj_t common_hal_mcu_processor_obj = { |
