代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: Timer.c
timer.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
timer.cpp
#include "stdafx.h"
#include "timer.h"
unsigned int lowshift;
double pfreq;
static double curtime = 0.0;
static double lastcurtime = 0.0;
LARGE_INTEGER g_freq;
int TimerInit()
{
unsig
timer.h
int TimerInit();
LARGE_INTEGER TimerGet();
double TimerGetDouble();
#define TIMER_OK 0
#define TIMER_NO_PERFCOUNTER 1
timer.lst
C51 COMPILER V7.09 TIMER 01/12/2007 09:30:15 PAGE 1
C51 COMPILER V7.09, COMPILATION OF MODULE TIMER
OBJECT MODULE PLACED IN t
timer.i
#line 1 "timer.c" /0
#line 1 "C:\KEIL\C51\INC\PHILIPS\REG922.H" /0
sfr P0 = 0x80;
sfr P1 = 0x90;
sfr P3 = 0xB0;
sfr PSW = 0xD0;
sfr ACC = 0xE0;
sfr B
timer.c
/*=============================================================================*/
// time.c - source file for lme2200 API
//
// Copyright 2005, Leaguer MicroElectronics Co., Ltd
// www.leaguerme
timer.h
#define uint unsigned int
#define uchar unsigned char
void timer0_init(char interval, int count);
// Logic timers
void setup_t0(uint t, void (*proc)());
void disable_t0(void);
/**/
void set