Technical information

SCI to SPI Peripheral Communication in V850ES Microcontrollers
CR000 = TM00_INTERVALVALUE;
CR001 = 0xffff;
}
/*
**---------------------------------------------------------------------------
**
** Abstract:
** start the TM00 counter
**
** Parameters:
** None
**
** Returns:
** None
**
**
**---------------------------------------------------------------------------
*/
void TM00_Start( void )
{
TMC00 = 0x0c; /* interval timer start */
ClrIORBit(TM0IC00, 0x40); /* enable INTTM000 */
}
/*
**---------------------------------------------------------------------------
**
** Abstract:
** stop the TM00 counter and clear the count register
**
** Parameters:
** None
**
** Returns:
** None
**
**---------------------------------------------------------------------------
*/
void TM00_Stop( void )
{
TMC00 = 0x0; /* stop TM00 */
SetIORBit(TM0IC00, 0x40); /* disable INTTM000 */
}
/*
**---------------------------------------------------------------------------
**
** Abstract:
** Change TM00 condition.
**
** Parameters:
** USHORT*: array_reg
** USHORT: array_num
** Returns:
91