/** * @file display_service.h * @author Alvin Young (impressionyang@outlook.com) * @brief * @version 0.1 * @date 2025-03-20 * * _ _ * (_)_ _ ___ _______ ___ ___ (_)__ ___ __ _____ ____ ___ _ * / / ' \/ _ \/ __/ -_|_-<(_- * Date Version Author Description * 2025-03-20 v1.0 Alvin Young 首次创建 * * */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __DISPLAY_SERVICE_H__ #define __DISPLAY_SERVICE_H__ #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include #include "main_common.h" /* define --------------------------------------------------------------------*/ /* typedef -------------------------------------------------------------------*/ /* variables -----------------------------------------------------------------*/ /* Private function(only *.c) -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ void imp_display_service_task(void *); #ifdef __cplusplus } #endif #endif//__DISPLAY_SERVICE_H__ /* * EOF */