代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.c
/*
* $Revision: 5609 $
*/
#include "timer.h"
static volatile int ms_ctr = 0;
void TimerBeat(void)
{
// Called at 1000 Hz rate.
ms_ctr++; // Sleep counter.
}
void Sleep(in
timer.h
/*
* $Revision: 5609 $
*/
void TimerBeat(void);
void Sleep(int milliseconds);
timer.c
/*
* $Revision: 5609 $
*/
#include "timer.h"
static volatile int ms_ctr = 0;
void TimerBeat(void)
{
// Called at 1000 Hz rate.
ms_ctr++; // Sleep counter.
}
void Sleep(in
timer.h
/*
* $Revision: 5609 $
*/
void TimerBeat(void);
void Sleep(int milliseconds);
timer.h
/*****************************************************************************
* timer.h: Header file for NXP LPC23xx/24xx Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
timer.c
/*****************************************************************************
* timer.c: Timer C file for NXP LPC230x Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
*
timer.h
/*****************************************************************************
* timer.h: Header file for NXP LPC23xx/24xx Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
timer.c
/*****************************************************************************
* timer.c: Timer C file for NXP LPC230x Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
*
timer.c
/**
* \addtogroup timer
* @{
*/
/**
* \file
* Timer library implementation.
* \author
* Adam Dunkels
*/
/*
* Copyright (c) 2004, Swedish Institute of Computer Sc
timer.h
/**
* \defgroup timer Timer library
*
* The timer library provides functions for setting, resetting and
* restarting timers, and for checking if a timer has expired. An
* application must "m