ESP32S2_Cal/main/helper/helper_wifi.c

17 lines
385 B
C

#include "esp_log.h"
#include "esp_spi_flash.h"
#include "esp_system.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "sdkconfig.h"
esp_err_t helper_wifi_init(void) {
// Check stored credentials from NVS,
// if no credentials stored or button pressed, force initiate easy connect
return ESP_OK;
}
void helper_wifi_task(void *pvParameters) {
//
}