Technical information
SCI to SPI Peripheral Communication in V850ES Microcontrollers
**---------------------------------------------------------------------------
----------
*/
__interrupt void MD_INTTM000( void )
{
/* debounce switch status when timer interrupt occurs */
sw_isr();
/* count down millisecond timer */
if (milliseconds > 0)
milliseconds--;
}
/* set the millisecond timer */
void SetMsecTimer(int time)
{
milliseconds = time;
}
/* check the millisecond timer */
BOOL CheckMsecTimer(void)
{
if (milliseconds > 0)
return MD_FALSE;
return MD_TRUE;
}
4.1.12 850.dir
#*
#****************************************************************************
*
#**
#** This device driver was created by Applilet for the V850ES/KX1+
#** 32-Bit Single-Chip Microcontrollers
#**
#** Copyright(C) NEC Electronics Corporation 2002-2004
#** All rights reserved by NEC Electronics Corporation
#**
#** This program should be used on your own responsibility.
#** NEC Electronics Corporation assumes no responsibility for any losses
incurred
#** by customers or third parties arising from the use of this file.
#**
#** Filename : 850.dir
#** Abstract : This is the link file for CA850
#** APIlib: V850ESKX1H.lib V1.33 [24 Sep 2004]
#**
#****************************************************************************
*
#*
CONST : !LOAD ?R V0x400{
.const = $PROGBITS ?A .const;
};
69