OVMS3-idf/components/bootloader/src/main
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
..
bootloader_config.h esp32: Bootloader wake deep sleep stub 2016-09-28 11:14:58 +08:00
bootloader_start.c esp32: Bootloader wake deep sleep stub 2016-09-28 11:14:58 +08:00
component.mk components/log: add implementation, update a few components to use it 2016-09-15 00:53:33 +08:00
esp32.bootloader.ld ld: fix ld for bootloader 2016-08-25 11:35:06 +08:00
flash_encrypt.c bootloader: remove trailing newlines from log messages 2016-09-20 14:18:23 +08:00
secure_boot.c bootloader: remove trailing newlines from log messages 2016-09-20 14:18:23 +08:00