@@ -9,8 +9,6 @@
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
-#include "esp_system.h"
-#include "nvs_flash.h"
#include "driver/gpio.h"
#include "sdkconfig.h"
@@ -42,6 +40,5 @@ void blink_task(void *pvParameter)
void app_main()
{
- nvs_flash_init();
xTaskCreate(&blink_task, "blink_task", 512, NULL, 5, NULL);
}
@@ -10,7 +10,6 @@
#include "esp_system.h"
void hello_task(void *pvParameter)
@@ -26,6 +25,5 @@ void hello_task(void *pvParameter)
xTaskCreate(&hello_task, "hello_task", 2048, NULL, 5, NULL);
@@ -11,8 +11,6 @@
#include "driver/i2s.h"
#include <math.h>
@@ -48,7 +46,6 @@ void app_main()
.data_in_num = -1 //Not used
};
i2s_driver_install(I2S_NUM, &i2s_config, 0, NULL);
i2s_set_pin(I2S_NUM, &pin_config);
#include "esp_log.h"
#include "driver/touch_pad.h"
@@ -95,9 +93,6 @@ static void touch_pad_rtc_intr(void * arg)
- ESP_LOGI(TAG, "Starting");
-
// Initialize touch pad peripheral
ESP_LOGI(TAG, "Initializing touch pad");
touch_pad_init();
@@ -34,8 +32,6 @@ void touch_pad_read_task(void *pvParameter)