代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.h
#define TIMERA0 0x03
#define TIMERA1 0x02
void OpenTimer(timer, tosc, count_value, count_direction, interruppt);
void CloseTimer(timer);
void ReadTimer(timer);
void WriteTimer(timer);
timer.src
; .\Timer.SRC generated from: ..\SourceFile\Timer.c
; COMPILER INVOKED BY:
; C:\Program Files\Keil\C51\BIN\C51.EXE ..\SourceFile\Timer.c LARGE BROWSE DEBUG OBJECTEXTEND PRINT(.\Timer.lst) SRC
timer.lst
C51 COMPILER V7.10 TIMER 01/02/2005 16:12:26 PAGE 1
C51 COMPILER V7.10, COMPILATION OF MODULE TIMER
OBJECT MODULE PLACED IN .
timer.c
/*************************************************/
/****************定时器************************/
/*************2003年2月9日*********************/
/************WROTE BY WANGSW*******************
timer.h
/*************************************************/
/****************定时器************************/
/*************2003年2月9日*********************/
/************WROTE BY WANGSW*******************
timer.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
timer.bas
Attribute VB_Name = "MTimer"
Option Explicit
' declares:
Private Declare Function SetTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Lo
timer.c
//timer.c
//Catinux 040811
// Include Standart LIB files
#include "AT91RM9200.h"
#include "lib_AT91RM9200.h"
#include "eb55.h"
#include "timer.h"
extern void timer0_asm_irq_handler(void);
timer.h
//Interrupt_timer.h
//Catinux 040811
#ifndef __TIMER_H
#define __TIMER_H
void Timer0_Init (void );
void Timer1_Init (void );
void Timer2_Init (void );
void Timer3_Init (void );
#endif