25 lines
353 B
C
25 lines
353 B
C
/*
|
|
* app.h
|
|
*
|
|
* Created on: 2025年2月24日
|
|
* Author: Cerlink
|
|
*/
|
|
|
|
#ifndef APP_INC_APP_H_
|
|
#define APP_INC_APP_H_
|
|
|
|
#include "ch32l103_conf.h"
|
|
|
|
#include "../../app/inc/timeIT.h"
|
|
|
|
|
|
/*
|
|
* 定时器相关
|
|
*/
|
|
extern volatile uint8_t g_timer1SFlag; //1S定时标志
|
|
extern volatile uint8_t g_timer50MsFlag; //20Ms定时标志
|
|
|
|
|
|
|
|
#endif /* APP_INC_APP_H_ */
|