/* * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 */ #include #include #include #include #include #include "app_io.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "nvs.h" #include "nvs_flash.h" #include "esp_system.h" #include "esp_log.h" #include "esp_bt.h" #include "app_manager.h" #define TAG "YUNTUNE" #define VERSION "v1.0.0" void app_main(void) { ESP_LOGI(TAG, "app version: %s", VERSION); esp_err_t err = init_app(); ESP_ERROR_CHECK(err); }