We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ef31f commit ee14bc2Copy full SHA for ee14bc2
cores/esp32/esp32-hal-misc.c
@@ -20,6 +20,7 @@
20
#include "nvs_flash.h"
21
#include "nvs.h"
22
#include "esp_partition.h"
23
+#include "esp_log.h"
24
#include <sys/time.h>
25
26
void yield()
@@ -78,6 +79,7 @@ void init() {}
78
79
80
void initArduino()
81
{
82
+ esp_log_level_set("*", CONFIG_LOG_DEFAULT_LEVEL);
83
esp_err_t err = nvs_flash_init();
84
if(err == ESP_ERR_NVS_NO_FREE_PAGES){
85
const esp_partition_t* partition = esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_NVS, NULL);
0 commit comments