void app_main(void)
{
// Initialize NVS.
esp_err_t ret = nvs_flash_init();
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
{
ESP_ERROR_CHECK(nvs_flash_erase());
ret = nvs_flash_init();
}
ESP_ERROR_CHECK( ret );
ESP_ERROR_CHECK(esp_bt_controller_mem_release ...
Search found 2 matches
- Tue Sep 28, 2021 10:49 am
- Forum: ESP-IDF
- Topic: How to interface the GPIO interrupt pin in wakeup pin
- Replies: 1
- Views: 2173
- Mon Sep 20, 2021 7:59 am
- Forum: General Discussion
- Topic: Creating our own READ,write event in BLE ESP 32 ESP IDF
- Replies: 8
- Views: 17805
Re: Creating our own READ,write event in BLE ESP 32 ESP IDF
yes i want a examples of same concept?