代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.c
/*
C language header file for sample programs for the CTD800.
Science & Technology CO.,LTD.
W2-B5 Shenzhen High-Tech Industrial Park,ShenZhen,GuangDong,P.R.C.
Tel: 86-755-6544000
timer.c
#include
#include
#include
int alphanum = 0;
int counter = 0;
void interrupt far handler(void)
{
if (++counter == 273) // 15 seconds
{
alph
timer.c
#include
#include
#include
#define BASE_ADR 0x300
#define IRQ_NUM 5
typedef unsigned char uchar;
typedef unsigned int uint;
void interrupt (*OldIrqIsr)(void);
vo