⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.h

📁 the timer control demo source for the NEC mcu
💻 H
字号:
/*
*******************************************************************************
**
**  This device driver was created by Applilet for the 78K0/KB2, 78K0/KC2,
**  78K0/KD2, 78K0/KE2 and 78K0/KF2 8-Bit Single-Chip Microcontrollers.
**
**  Filename :	timer.h
**  Abstract :	This file implements a device driver for the timer module
**  Device :	uPD78F0547
**  Compiler:	NEC/CC78K0
**
*******************************************************************************
*/

#include "timer_config.h"

#ifndef _HDTIMER_
#define _HDTIMER_

/*
*******************************************************************************
**  Function proto type
*******************************************************************************
*/

#if TM00_NotUse==0
void TM00_Init(void);
void TM00_Enable(void);
void TM00_Disable(void);
#endif

#if TM01_NotUse==0
void TM01_Init(void);
void TM01_Enable(void);
void TM01_Disable(void);
#endif

#if TM50_NotUse==0
void TM50_Init(void);
void TM50_Enable(void);
void TM50_Disable(void);
#endif

#if TM51_NotUse==0
void TM51_Init(void);
void TM51_Enable(void);
void TM51_Disable(void);
#endif

#if TMH0_NotUse==0
void TMH0_Init(void);
void TMH0_Enable(void);
void TMH0_Disable(void);
#endif

#if TMH1_NotUse==0
void TMH1_Init(void);
void TMH1_Enable(void);
void TMH1_Disable(void);
#endif

#endif		/* _HDTIMER_*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -