代码搜索:Timer0
找到约 1,870 项符合「Timer0」的源代码
代码结果 1,870
www.eeworm.com/read/297497/8013322
c f32x_timer0_13bittimer.c
//-----------------------------------------------------------------------------
// F32x_Timer0_13bitTimer.c
//-----------------------------------------------------------------------------
//
// Co
www.eeworm.com/read/297035/8058734
asm t3.asm
;PROGRAM NAME:T3.ASM
;TEST TIMER0 MODE 1:16 BIT COUNT UP
;
COUNT EQU 92
CHECK_BIT REG P3.2
;
ORG 0
MOV R0,#00H
DJNZ R0,$ ;WAIT
CLR CH
www.eeworm.com/read/333203/12698835
h intt.h
#include
#define ONINTT_T0 1
//利用中断扫描键盘
void timer0() interrupt 1 using 0
{
#if board==finishboard
TH0=0xb8;
TL0=0x00; //重新设定定时器的初值
key_scan(); //调用按键扫处理程序
#endif
}
www.eeworm.com/read/326072/13167747
c initialization.c
#include "BF537 Flags.h"
asm(".section sdram0_bank1");
//--------------------------------------------------------------------------//
// Function: Init_Flags //
//
www.eeworm.com/read/241033/13178374
c timer0_poll1.c
//-----------------------------------------------------------------------------
// Timer0_Poll1.c
//-----------------------------------------------------------------------------
// Copyright 2001 C
www.eeworm.com/read/318982/13464875
h atmega128.h
#ifndef _ATMEGA128_H_
#define _ATMEGA128_H_
#include
#include
/*Function Declared*/
/*利用atmega128的8位定时器Timer0的输出比较匹配单元产生定时中断,程序中设定为200Hz(5ms)*/
void init_timer0(
www.eeworm.com/read/314425/13567774
c main.c
//---------------------------------------------------------------------------
/********************************************
嵌入式系统 小型操作系统
作者:汪普宏
制作日期:2006.9
***********************
www.eeworm.com/read/304476/13792817
c text1.c
#include
#include
Uart_Init();
main()
{ Uart_Init();
TH0=0x00;
TL0=0xff;
ET0=0; /* 定时器0中断屏蔽*/
EA=1; /* 全局中断允许 */
TF0=0;
TR0=1; /* 定时器0准备开始 */
while(1)
if(TF0=
www.eeworm.com/read/490179/6460043
h atmega128.h
#ifndef _ATMEGA128_H_
#define _ATMEGA128_H_
#include
#include
/*Function Declared*/
/*利用atmega128的8位定时器Timer0的输出比较匹配单元产生定时中断,程序中设定为200Hz(5ms)*/
void init_timer0(
www.eeworm.com/read/264290/11323125
c test.c
#include "includes.h"
#define TaskStkSize 100
void port_init(void); //端口初始化
void vic_init(void); //VIC初始化
void timer0_init(void); //使能定时器0
//__irq void timer0_i