/** * @file main_app.c * @author Alvin Young (impressionyang@outlook.com) * @brief * @version 0.1 * @date 2024-11-25 * * _ _ * (_)_ _ ___ _______ ___ ___ (_)__ ___ __ _____ ____ ___ _ * / / ' \/ _ \/ __/ -_|_-<(_- * Date Version Author Description * 2024-11-25 v1.0 Alvin Young 首次创建 * * */ /* Define to prevent recursive inclusion -------------------------------------*/ /* Includes ------------------------------------------------------------------*/ #include "main_app.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_system.h" #include "esp_chip_info.h" #include "sdkconfig.h" #include #include "main_common.h" /* define --------------------------------------------------------------------*/ /* typedef -------------------------------------------------------------------*/ /* variables -----------------------------------------------------------------*/ /* Private function(only *.c) -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ uint8_t imp_main_app_task() { int i = 0; while (1) { cdc_printf("hello %d\r\n", i++); vTaskDelay(1000 / portTICK_PERIOD_MS); } return 0; } /* * EOF */