48 lines
1.8 KiB
C
48 lines
1.8 KiB
C
/*---------------------------------------------------------------------*/
|
||
/* --- STC MCU Limited ------------------------------------------------*/
|
||
/* --- STC 1T Series MCU Demo Programme -------------------------------*/
|
||
/* --- Mobile: (86)13922805190 ----------------------------------------*/
|
||
/* --- Fax: 86-0513-55012956,55012947,55012969 ------------------------*/
|
||
/* --- Tel: 86-0513-55012928,55012929,55012966 ------------------------*/
|
||
/* --- Web: www.STCMCU.com --------------------------------------------*/
|
||
/* --- Web: www.STCMCUDATA.com ---------------------------------------*/
|
||
/* --- QQ: 800003751 -------------------------------------------------*/
|
||
/* <20><><EFBFBD>Ҫ<EFBFBD>ڳ<EFBFBD><DAB3><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>ô˴<C3B4><CBB4><EFBFBD>,<2C><><EFBFBD>ڳ<EFBFBD><DAB3><EFBFBD><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD>STC<54><43><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD><EFBFBD><EFBFBD> */
|
||
/*---------------------------------------------------------------------*/
|
||
|
||
#ifndef __TIMER_H
|
||
#define __TIMER_H
|
||
|
||
#include "config.h"
|
||
|
||
#define Timer0 0
|
||
#define Timer1 1
|
||
#define Timer2 2
|
||
#define Timer3 3
|
||
#define Timer4 4
|
||
|
||
#define TIM_16BitAutoReload 0
|
||
#define TIM_16Bit 1
|
||
#define TIM_8BitAutoReload 2
|
||
#define TIM_16BitAutoReloadNoMask 3
|
||
|
||
#define TIM_CLOCK_1T 0
|
||
#define TIM_CLOCK_12T 1
|
||
#define TIM_CLOCK_Ext 2
|
||
|
||
typedef struct
|
||
{
|
||
u8 TIM_Mode; // <20><><EFBFBD><EFBFBD>ģʽ, TIM_16BitAutoReload,TIM_16Bit,TIM_8BitAutoReload,TIM_16BitAutoReloadNoMask
|
||
u8 TIM_Priority; // <20><><EFBFBD>ȼ<EFBFBD><C8BC><EFBFBD><EFBFBD><EFBFBD> Priority_0,Priority_1,Priority_2,Priority_3
|
||
u8 TIM_Interrupt; // <20>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD> ENABLE,DISABLE
|
||
u8 TIM_ClkSource; // ʱ<><CAB1>Դ TIM_CLOCK_1T,TIM_CLOCK_12T,TIM_CLOCK_Ext
|
||
u8 TIM_ClkOut; // <20>ɱ<EFBFBD><C9B1>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD>, ENABLE,DISABLE
|
||
u16 TIM_Value; // װ<>س<EFBFBD>ֵ
|
||
u8 TIM_Run; // <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD> ENABLE,DISABLE
|
||
} TIM_InitTypeDef;
|
||
|
||
u8 Timer_Inilize(u8 TIM, TIM_InitTypeDef *TIMx);
|
||
extern u8 KILL_time;
|
||
void Timer_config(void);
|
||
#endif
|