Remove nvs_flash_init() parameters

Matches esp-idf commit bda83c4a95
This commit is contained in:
Angus Gratton 2016-09-27 12:48:05 +10:00
parent c19a8d0246
commit e8703ac707
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ esp_err_t event_handler(void *ctx, system_event_t *event)
int app_main(void)
{
nvs_flash_init(6, 3);
nvs_flash_init();
system_init();
tcpip_adapter_init();
ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );