| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Unlicense OR CC0-1.0
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <inttypes.h>
- #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);
- }
|