64 lines
2.2 KiB
C
64 lines
2.2 KiB
C
|
/*
|
||
|
*******************************************************************************
|
||
|
* Copyright(C) NEC Electronics Corporation 2010
|
||
|
* 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.
|
||
|
*
|
||
|
* This device driver was created by Applilet3 for V850ES/Jx3
|
||
|
* 32-Bit Single-Chip Microcontrollers
|
||
|
* Filename: CG_timer_user.c
|
||
|
* Abstract: This file implements device driver for Timer module.
|
||
|
* APIlib: Applilet3 for V850ES/Jx3 V2.01 [20 Apr 2010]
|
||
|
* Device: uPD70F3746
|
||
|
* Compiler: IAR Systems ICCV850
|
||
|
* Creation date: 6/26/2010
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
*******************************************************************************
|
||
|
** Include files
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
#include "CG_macrodriver.h"
|
||
|
#include "CG_timer.h"
|
||
|
/* Start user code for include. Do not edit comment generated here */
|
||
|
/* End user code. Do not edit comment generated here */
|
||
|
#include "CG_userdefine.h"
|
||
|
|
||
|
/*
|
||
|
*******************************************************************************
|
||
|
** Global define
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
/* Start user code for global. Do not edit comment generated here */
|
||
|
/* End user code. Do not edit comment generated here */
|
||
|
|
||
|
/*
|
||
|
**-----------------------------------------------------------------------------
|
||
|
**
|
||
|
** Abstract:
|
||
|
** This function is INTTP0CC0 interrupt service routine.
|
||
|
**
|
||
|
** Parameters:
|
||
|
** None
|
||
|
**
|
||
|
** Returns:
|
||
|
** None
|
||
|
**
|
||
|
**-----------------------------------------------------------------------------
|
||
|
*/
|
||
|
|
||
|
///#pragma vector = INTTB0CC0_vector
|
||
|
///__interrupt void MD_INTTB0CC0(void)
|
||
|
///{
|
||
|
/* Start user code. Do not edit comment generated here */
|
||
|
/// PDLH = ~PDLH;
|
||
|
/* End user code. Do not edit comment generated here */
|
||
|
///}
|
||
|
|
||
|
/* Start user code for adding. Do not edit comment generated here */
|
||
|
/* End user code. Do not edit comment generated here */
|