OVMS3-idf/components/bootloader/src
Angus Gratton 7c494055e3 esp32: Bootloader wake deep sleep stub
App can contain a stub program resident in RTC fast memory. Bootloader
will load the stub on initial boot. If the device wakes from deep sleep,
the stub is run immediately (before any other data is loaded, etc.)

To implement a custom wake stub, implement a function in your program:

```
void RTC_IRAM_ATTR esp_wake_deep_sleep(void)
{
  esp_default_wake_deep_sleep();
  // other wake logic
}
```

... and it will replace the default implementation.
2016-09-28 11:14:58 +08:00
..
main esp32: Bootloader wake deep sleep stub 2016-09-28 11:14:58 +08:00
.gitignore Initial public version 2016-08-17 23:08:22 +08:00
Makefile components/esp32,bootloader: fix build 2016-09-15 02:37:54 +08:00