OVMS3-idf/components
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 esp32: Bootloader wake deep sleep stub 2016-09-28 11:14:58 +08:00
bt Merge branch 'master' into feature/btdm_controller 2016-09-27 22:08:27 +08:00
driver Remove some macros and declarations that are already in rom/gpio.h 2016-09-21 12:08:42 +08:00
esp32 esp32: Bootloader wake deep sleep stub 2016-09-28 11:14:58 +08:00
esptool_py esptool: Bump upstream revision 2016-09-26 17:21:11 +10:00
expat clean up warnings 2016-09-26 00:52:32 +08:00
freertos Merge branch 'feature/init_refactoring' into 'master' 2016-09-26 17:06:12 +08:00
json json & expat: Update component.mk after merging from master 2016-09-09 14:07:45 +10:00
log components/log: regroup macros for better readability 2016-09-19 08:53:09 +08:00
lwip components/lwip,esp32: fixes for C++ 2016-09-26 03:05:25 +08:00
mbedtls mbedtls: Add some initial menuconfig options 2016-09-27 10:38:00 +10:00
newlib Name component makefiles component.mk instead of Makefile 2016-09-08 13:41:19 +10:00
nghttp components/nghttp: rename Makefile to component.mk 2016-09-26 19:21:55 +08:00
nvs_flash nvs: Remove flash layout arguments from nvs_init() 2016-09-27 13:28:45 +10:00
partition_table Remove bin/ directory in favour of an add_path.sh script that can be sourced 2016-09-01 18:45:10 +10:00
spi_flash components/spi_flash: remove stray level of indentation 2016-09-26 12:47:17 +08:00
tcpip_adapter wifi: move type definitions into separate header file 2016-09-27 11:47:47 +08:00