2、将显示UI模块化,单独成文件displayui.c和display_ui.h; 3、将部分功能模块的状态位、标志位变量和配置参数置于congfig.h; 4、将工程程序中的TP3315字符更改SY8835。
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
/*
|
|
******************************************************************************
|
|
*
|
|
* @file display_ui.h
|
|
* @brief display ui module
|
|
* @ic sy8835
|
|
*
|
|
* @version 1.0
|
|
* @date 2025/01/14 09:59:40
|
|
* @author Alex Xu
|
|
*
|
|
* Copyright (c) 2013-2099,Tkplusemi Technology Co.,Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* History:
|
|
* Revision Date Author Desc
|
|
* 1.0.0 2025/01/14 Alex build this file
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __DISPLAY_UI_H__
|
|
#define __DISPLAY_UI_H__
|
|
|
|
/*_____ I N C L U D E S ____________________________________________________*/
|
|
|
|
#include "define.h"
|
|
|
|
/******************************************************************************\
|
|
Macro definitions
|
|
\******************************************************************************/
|
|
|
|
/******************************************************************************\
|
|
Variables definitions
|
|
\******************************************************************************/
|
|
extern uint8_t LED_On_Timer; //ledÁÁʱ¼ä¼ÆÊ±
|
|
|
|
/******************************************************************************\
|
|
Functions definitions
|
|
\******************************************************************************/
|
|
|
|
extern void LED_Display_App(void);
|
|
|
|
#endif
|
|
|