Remove nvs_flash_init() parameters
Matches esp-idf commit bda83c4a95
This commit is contained in:
parent
c19a8d0246
commit
e8703ac707
|
@ -13,7 +13,7 @@ esp_err_t event_handler(void *ctx, system_event_t *event)
|
||||||
|
|
||||||
int app_main(void)
|
int app_main(void)
|
||||||
{
|
{
|
||||||
nvs_flash_init(6, 3);
|
nvs_flash_init();
|
||||||
system_init();
|
system_init();
|
||||||
tcpip_adapter_init();
|
tcpip_adapter_init();
|
||||||
ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );
|
ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );
|
||||||
|
|
Loading…
Reference in New Issue