/* * Squeezelite for esp32 * * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #include "platform_esp32.h" #include "led.h" #include #include #include "freertos/FreeRTOS.h" #include "driver/gpio.h" #include "driver/spi_master.h" #include "freertos/task.h" #include "esp_system.h" #include "esp_spi_flash.h" #include "esp_wifi.h" #include "esp_system.h" #include "esp_event_loop.h" #include "nvs_flash.h" #include "esp_log.h" #include "freertos/event_groups.h" #include "mdns.h" #include "lwip/api.h" #include "lwip/err.h" #include "lwip/netdb.h" #include "nvs_utilities.h" #include "http_server.h" #include "wifi_manager.h" #include "squeezelite-ota.h" static EventGroupHandle_t wifi_event_group; extern char current_namespace[]; const int CONNECTED_BIT = BIT0; #define JOIN_TIMEOUT_MS (10000) static const char TAG[] = "esp_app_main"; char * fwurl = NULL; #ifdef CONFIG_SQUEEZEAMP #define LED_GREEN_GPIO 12 #define LED_RED_GPIO 13 #else #define LED_GREEN_GPIO 0 #define LED_RED_GPIO 0 #endif static bool bWifiConnected=false; /* brief this is an exemple of a callback that you can setup in your own app to get notified of wifi manager event */ void cb_connection_got_ip(void *pvParameter){ ESP_LOGI(TAG, "I have a connection!"); xEventGroupSetBits(wifi_event_group, CONNECTED_BIT); bWifiConnected=true; led_unpush(LED_GREEN); } void cb_connection_sta_disconnected(void *pvParameter){ led_blink_pushed(LED_GREEN, 250, 250); bWifiConnected=false; xEventGroupClearBits(wifi_event_group, CONNECTED_BIT); } bool wait_for_wifi(){ bool connected=(xEventGroupGetBits(wifi_event_group) & CONNECTED_BIT)!=0; if(!connected){ ESP_LOGD(TAG,"Waiting for WiFi..."); connected = (xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT, pdFALSE, pdTRUE, JOIN_TIMEOUT_MS / portTICK_PERIOD_MS)& CONNECTED_BIT)!=0; if(!connected){ ESP_LOGW(TAG,"wifi timeout."); } else { ESP_LOGI(TAG,"WiFi Connected!"); } } return connected; } static void initialize_nvs() { esp_err_t err = nvs_flash_init(); if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { ESP_ERROR_CHECK(nvs_flash_erase()); err = nvs_flash_init(); } ESP_ERROR_CHECK(err); } char * process_ota_url(){ nvs_handle nvs; ESP_LOGI(TAG,"Checking for update url"); char * fwurl=get_nvs_value_alloc(NVS_TYPE_STR, "fwurl"); if(fwurl!=NULL) { ESP_LOGD(TAG,"Deleting nvs entry for Firmware URL %s", fwurl); esp_err_t err = nvs_open(current_namespace, NVS_READWRITE, &nvs); if (err == ESP_OK) { err = nvs_erase_key(nvs, "fwurl"); if (err == ESP_OK) { ESP_LOGD(TAG,"Firmware url erased from nvs."); err = nvs_commit(nvs); if (err == ESP_OK) { ESP_LOGI(TAG, "Value with key '%s' erased", "fwurl"); ESP_LOGD(TAG,"nvs erase committed."); } else { ESP_LOGE(TAG,"Unable to commit nvs erase operation. Error : %s.",esp_err_to_name(err)); } } else { ESP_LOGE(TAG,"Error : %s. Unable to delete firmware url key.",esp_err_to_name(err)); } nvs_close(nvs); } else { ESP_LOGE(TAG,"Error opening nvs: %s. Unable to delete firmware url key.",esp_err_to_name(err)); } } return fwurl; } void app_main() { char * fwurl = NULL; initialize_nvs(); led_config(LED_GREEN, LED_GREEN_GPIO, 0); led_config(LED_RED, LED_RED_GPIO, 0); wifi_event_group = xEventGroupCreate(); xEventGroupClearBits(wifi_event_group, CONNECTED_BIT); fwurl = process_ota_url(); /* start the wifi manager */ led_blink(LED_GREEN, 250, 250); wifi_manager_start(); wifi_manager_set_callback(EVENT_STA_GOT_IP, &cb_connection_got_ip); wifi_manager_set_callback(WIFI_EVENT_STA_DISCONNECTED, &cb_connection_sta_disconnected); console_start(); if(fwurl && strlen(fwurl)>0){ while(!bWifiConnected){ wait_for_wifi(); taskYIELD(); } ESP_LOGI(TAG,"Updating firmware from link: %s",fwurl); start_ota(fwurl, true); free(fwurl); } }