12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064 |
- /*""FILE COMMENT""*******************************************************
- * System Name : Interrupt program for RX62Nxx
- * File Name : Interrupt_MTU2.c
- * Version : 1.02
- * Contents : Interrupt handlers for the MTU channels
- * Customer :
- * Model :
- * Order :
- * CPU : RX
- * Compiler : RXC
- * OS : Nothing
- * Programmer :
- * Note :
- ************************************************************************
- * Copyright, 2011. Renesas Electronics Corporation
- * and Renesas Solutions Corporation
- ************************************************************************
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FILE COMMENT END""**************************************************/
- #include "r_pdl_mtu2.h"
- #include "r_pdl_definitions.h"
- #include "r_pdl_user_definitions.h"
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIA0(void)
- *-------------------------------------------------------------------
- * Function : TGIAn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func1_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGIA0
- __fast_interrupt void Interrupt_MTU0_TGIA0(void)
- #else
- #pragma vector = VECT_MTU0_TGIA0
- __interrupt void Interrupt_MTU0_TGIA0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU1_TGIA1
- __fast_interrupt void Interrupt_MTU1_TGIA1(void)
- #else
- #pragma vector = VECT_MTU1_TGIA1
- __interrupt void Interrupt_MTU1_TGIA1(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[1]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU2_TGIA2
- __fast_interrupt void Interrupt_MTU2_TGIA2(void)
- #else
- #pragma vector = VECT_MTU2_TGIA2
- __interrupt void Interrupt_MTU2_TGIA2(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[2] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[2]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU3_TGIA3
- __fast_interrupt void Interrupt_MTU3_TGIA3(void)
- #else
- #pragma vector = VECT_MTU3_TGIA3
- __interrupt void Interrupt_MTU3_TGIA3(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[3] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[3]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU4_TGIA4
- __fast_interrupt void Interrupt_MTU4_TGIA4(void)
- #else
- #pragma vector = VECT_MTU4_TGIA4
- __interrupt void Interrupt_MTU4_TGIA4(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[4] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[4]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGIA6
- __fast_interrupt void Interrupt_MTU6_TGIA6(void)
- #else
- #pragma vector = VECT_MTU6_TGIA6
- __interrupt void Interrupt_MTU6_TGIA6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[6]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU7_TGIA7
- __fast_interrupt void Interrupt_MTU7_TGIA7(void)
- #else
- #pragma vector = VECT_MTU7_TGIA7
- __interrupt void Interrupt_MTU7_TGIA7(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[7] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[7]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU8_TGIA8
- __fast_interrupt void Interrupt_MTU8_TGIA8(void)
- #else
- #pragma vector = VECT_MTU8_TGIA8
- __interrupt void Interrupt_MTU8_TGIA8(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[8] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[8]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU9_TGIA9
- __fast_interrupt void Interrupt_MTU9_TGIA9(void)
- #else
- #pragma vector = VECT_MTU9_TGIA9
- __interrupt void Interrupt_MTU9_TGIA9(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[9] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[9]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU10_TGIA10
- __fast_interrupt void Interrupt_MTU10_TGIA10(void)
- #else
- #pragma vector = VECT_MTU10_TGIA10
- __interrupt void Interrupt_MTU10_TGIA10(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[10] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[10]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIBn(void)
- *-------------------------------------------------------------------
- * Function : TGIBn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func2_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGIB0
- __fast_interrupt void Interrupt_MTU0_TGIB0(void)
- #else
- #pragma vector = VECT_MTU0_TGIB0
- __interrupt void Interrupt_MTU0_TGIB0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU1_TGIB1
- __fast_interrupt void Interrupt_MTU1_TGIB1(void)
- #else
- #pragma vector = VECT_MTU1_TGIB1
- __interrupt void Interrupt_MTU1_TGIB1(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[1]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU2_TGIB2
- __fast_interrupt void Interrupt_MTU2_TGIB2(void)
- #else
- #pragma vector = VECT_MTU2_TGIB2
- __interrupt void Interrupt_MTU2_TGIB2(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[2] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[2]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU3_TGIB3
- __fast_interrupt void Interrupt_MTU3_TGIB3(void)
- #else
- #pragma vector = VECT_MTU3_TGIB3
- __interrupt void Interrupt_MTU3_TGIB3(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[3] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[3]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU4_TGIB4
- __fast_interrupt void Interrupt_MTU4_TGIB4(void)
- #else
- #pragma vector = VECT_MTU4_TGIB4
- __interrupt void Interrupt_MTU4_TGIB4(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[4] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[4]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGIB6
- __fast_interrupt void Interrupt_MTU6_TGIB6(void)
- #else
- #pragma vector = VECT_MTU6_TGIB6
- __interrupt void Interrupt_MTU6_TGIB6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[6]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU7_TGIB7
- __fast_interrupt void Interrupt_MTU7_TGIB7(void)
- #else
- #pragma vector = VECT_MTU7_TGIB7
- __interrupt void Interrupt_MTU7_TGIB7(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[7] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[7]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU8_TGIB8
- __fast_interrupt void Interrupt_MTU8_TGIB8(void)
- #else
- #pragma vector = VECT_MTU8_TGIB8
- __interrupt void Interrupt_MTU8_TGIB8(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[8] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[8]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU9_TGIB9
- __fast_interrupt void Interrupt_MTU9_TGIB9(void)
- #else
- #pragma vector = VECT_MTU9_TGIB9
- __interrupt void Interrupt_MTU9_TGIB9(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[9] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[9]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU10_TGIB10
- __fast_interrupt void Interrupt_MTU10_TGIB10(void)
- #else
- #pragma vector = VECT_MTU10_TGIB10
- __interrupt void Interrupt_MTU10_TGIB10(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[10] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[10]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGICn(void)
- *-------------------------------------------------------------------
- * Function : TGICn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func3_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGIC0
- __fast_interrupt void Interrupt_MTU0_TGIC0(void)
- #else
- #pragma vector = VECT_MTU0_TGIC0
- __interrupt void Interrupt_MTU0_TGIC0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU3_TGIC3
- __fast_interrupt void Interrupt_MTU3_TGIC3(void)
- #else
- #pragma vector = VECT_MTU3_TGIC3
- __interrupt void Interrupt_MTU3_TGIC3(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[3] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[3]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU4_TGIC4
- __fast_interrupt void Interrupt_MTU4_TGIC4(void)
- #else
- #pragma vector = VECT_MTU4_TGIC4
- __interrupt void Interrupt_MTU4_TGIC4(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[4] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[4]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGIC6
- __fast_interrupt void Interrupt_MTU6_TGIC6(void)
- #else
- #pragma vector = VECT_MTU6_TGIC6
- __interrupt void Interrupt_MTU6_TGIC6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[6]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU9_TGIC9
- __fast_interrupt void Interrupt_MTU9_TGIC9(void)
- #else
- #pragma vector = VECT_MTU9_TGIC9
- __interrupt void Interrupt_MTU9_TGIC9(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[9] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[9]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU10_TGIC10
- __fast_interrupt void Interrupt_MTU10_TGIC10(void)
- #else
- #pragma vector = VECT_MTU10_TGIC10
- __interrupt void Interrupt_MTU10_TGIC10(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[10] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[10]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIDn(void)
- *-------------------------------------------------------------------
- * Function : TGIDn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func4_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGID0
- __fast_interrupt void Interrupt_MTU0_TGID0(void)
- #else
- #pragma vector = VECT_MTU0_TGID0
- __interrupt void Interrupt_MTU0_TGID0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU3_TGID3
- __fast_interrupt void Interrupt_MTU3_TGID3(void)
- #else
- #pragma vector = VECT_MTU3_TGID3
- __interrupt void Interrupt_MTU3_TGID3(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[3] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[3]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU4_TGID4
- __fast_interrupt void Interrupt_MTU4_TGID4(void)
- #else
- #pragma vector = VECT_MTU4_TGID4
- __interrupt void Interrupt_MTU4_TGID4(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[4] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[4]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGID6
- __fast_interrupt void Interrupt_MTU6_TGID6(void)
- #else
- #pragma vector = VECT_MTU6_TGID6
- __interrupt void Interrupt_MTU6_TGID6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[6]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU9_TGID9
- __fast_interrupt void Interrupt_MTU9_TGID9(void)
- #else
- #pragma vector = VECT_MTU9_TGID9
- __interrupt void Interrupt_MTU9_TGID9(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[9] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[9]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU10_TGID10
- __fast_interrupt void Interrupt_MTU10_TGID10(void)
- #else
- #pragma vector = VECT_MTU10_TGID10
- __interrupt void Interrupt_MTU10_TGID10(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func4_callback_func[10] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func4_callback_func[10]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIEn(void)
- *-------------------------------------------------------------------
- * Function : TGIEn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_TGRE_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGIE0
- __fast_interrupt void Interrupt_MTU0_TGIE0(void)
- #else
- #pragma vector = VECT_MTU0_TGIE0
- __interrupt void Interrupt_MTU0_TGIE0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_TGRE_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_TGRE_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGIE6
- __fast_interrupt void Interrupt_MTU6_TGIE6(void)
- #else
- #pragma vector = VECT_MTU6_TGIE6
- __interrupt void Interrupt_MTU6_TGIE6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_TGRE_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_TGRE_callback_func[6]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIFn(void)
- *-------------------------------------------------------------------
- * Function : TGIFn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_TGRF_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TGIF0
- __fast_interrupt void Interrupt_MTU0_TGIF0(void)
- #else
- #pragma vector = VECT_MTU0_TGIF0
- __interrupt void Interrupt_MTU0_TGIF0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_TGRF_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_TGRF_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TGIF6
- __fast_interrupt void Interrupt_MTU6_TGIF6(void)
- #else
- #pragma vector = VECT_MTU6_TGIF6
- __interrupt void Interrupt_MTU6_TGIF6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_TGRF_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_TGRF_callback_func[6]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TCIVn(void)
- *-------------------------------------------------------------------
- * Function : TCIVn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_Overflow_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU0_TCIV0
- __fast_interrupt void Interrupt_MTU0_TCIV0(void)
- #else
- #pragma vector = VECT_MTU0_TCIV0
- __interrupt void Interrupt_MTU0_TCIV0(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[0] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[0]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU1_TCIV1
- __fast_interrupt void Interrupt_MTU1_TCIV1(void)
- #else
- #pragma vector = VECT_MTU1_TCIV1
- __interrupt void Interrupt_MTU1_TCIV1(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[1]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU2_TCIV2
- __fast_interrupt void Interrupt_MTU2_TCIV2(void)
- #else
- #pragma vector = VECT_MTU2_TCIV2
- __interrupt void Interrupt_MTU2_TCIV2(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[2] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[2]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU3_TCIV3
- __fast_interrupt void Interrupt_MTU3_TCIV3(void)
- #else
- #pragma vector = VECT_MTU3_TCIV3
- __interrupt void Interrupt_MTU3_TCIV3(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[3] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[3]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU4_TCIV4
- __fast_interrupt void Interrupt_MTU4_TCIV4(void)
- #else
- #pragma vector = VECT_MTU4_TCIV4
- __interrupt void Interrupt_MTU4_TCIV4(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[4] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[4]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU6_TCIV6
- __fast_interrupt void Interrupt_MTU6_TCIV6(void)
- #else
- #pragma vector = VECT_MTU6_TCIV6
- __interrupt void Interrupt_MTU6_TCIV6(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[6] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[6]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU7_TCIV7
- __fast_interrupt void Interrupt_MTU7_TCIV7(void)
- #else
- #pragma vector = VECT_MTU7_TCIV7
- __interrupt void Interrupt_MTU7_TCIV7(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[7] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[7]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU8_TCIV8
- __fast_interrupt void Interrupt_MTU8_TCIV8(void)
- #else
- #pragma vector = VECT_MTU8_TCIV8
- __interrupt void Interrupt_MTU8_TCIV8(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[8] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[8]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU9_TCIV9
- __fast_interrupt void Interrupt_MTU9_TCIV9(void)
- #else
- #pragma vector = VECT_MTU9_TCIV9
- __interrupt void Interrupt_MTU9_TCIV9(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[9] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[9]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU10_TCIV10
- __fast_interrupt void Interrupt_MTU10_TCIV10(void)
- #else
- #pragma vector = VECT_MTU10_TCIV10
- __interrupt void Interrupt_MTU10_TCIV10(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Overflow_callback_func[10] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Overflow_callback_func[10]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TCIUn(void)
- *-------------------------------------------------------------------
- * Function : TCIUn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_Underflow_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU1_TCIU1
- __fast_interrupt void Interrupt_MTU1_TCIU1(void)
- #else
- #pragma vector = VECT_MTU1_TCIU1
- __interrupt void Interrupt_MTU1_TCIU1(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Underflow_callback_func[1] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Underflow_callback_func[1]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU2_TCIU2
- __fast_interrupt void Interrupt_MTU2_TCIU2(void)
- #else
- #pragma vector = VECT_MTU2_TCIU2
- __interrupt void Interrupt_MTU2_TCIU2(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Underflow_callback_func[2] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Underflow_callback_func[2]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU7_TCIU7
- __fast_interrupt void Interrupt_MTU7_TCIU7(void)
- #else
- #pragma vector = VECT_MTU7_TCIU7
- __interrupt void Interrupt_MTU7_TCIU7(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Underflow_callback_func[7] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Underflow_callback_func[7]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU8_TCIU8
- __fast_interrupt void Interrupt_MTU8_TCIU8(void)
- #else
- #pragma vector = VECT_MTU8_TCIU8
- __interrupt void Interrupt_MTU8_TCIU8(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_Underflow_callback_func[8] != PDL_NO_FUNC)
- {
- rpdl_MTU2_Underflow_callback_func[8]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIUn(void)
- *-------------------------------------------------------------------
- * Function : TGIUn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func1_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU5_TGIU5
- __fast_interrupt void Interrupt_MTU5_TGIU5(void)
- #else
- #pragma vector = VECT_MTU5_TGIU5
- __interrupt void Interrupt_MTU5_TGIU5(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[5] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[5]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU11_TGIU11
- __fast_interrupt void Interrupt_MTU11_TGIU11(void)
- #else
- #pragma vector = VECT_MTU11_TGIU11
- __interrupt void Interrupt_MTU11_TGIU11(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func1_callback_func[11] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func1_callback_func[11]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIVn(void)
- *-------------------------------------------------------------------
- * Function : TGIVn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func2_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU5_TGIV5
- __fast_interrupt void Interrupt_MTU5_TGIV5(void)
- #else
- #pragma vector = VECT_MTU5_TGIV5
- __interrupt void Interrupt_MTU5_TGIV5(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[5] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[5]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU11_TGIV11
- __fast_interrupt void Interrupt_MTU11_TGIV11(void)
- #else
- #pragma vector = VECT_MTU11_TGIV11
- __interrupt void Interrupt_MTU11_TGIV11(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func2_callback_func[11] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func2_callback_func[11]();
- }
- }
- /*""FUNC COMMENT""***************************************************
- * Module outline: Timer interrupt processing
- *-------------------------------------------------------------------
- * Declaration : void Interrupt_MTUn_TGIWn(void)
- *-------------------------------------------------------------------
- * Function : TGIWn interrupt processing
- *-------------------------------------------------------------------
- * Argument : Nothing
- *-------------------------------------------------------------------
- * Return value : Nothing
- *-------------------------------------------------------------------
- * Input :
- * Output :
- *-------------------------------------------------------------------
- * Use function : rpdl_MTU2_func3_callback_func[n]
- *-------------------------------------------------------------------
- * Notes :
- *-------------------------------------------------------------------
- * History : 2011.04.08
- * : Ver 1.02
- * : CS-5 release.
- *""FUNC COMMENT END""**********************************************/
- #if FAST_INTC_VECTOR == VECT_MTU5_TGIW5
- __fast_interrupt void Interrupt_MTU5_TGIW5(void)
- #else
- #pragma vector = VECT_MTU5_TGIW5
- __interrupt void Interrupt_MTU5_TGIW5(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[5] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[5]();
- }
- }
- #if FAST_INTC_VECTOR == VECT_MTU11_TGIW11
- __fast_interrupt void Interrupt_MTU11_TGIW11(void)
- #else
- #pragma vector = VECT_MTU11_TGIW11
- __interrupt void Interrupt_MTU11_TGIW11(void)
- #endif
- {
- /* Call the user function */
- if (rpdl_MTU2_func3_callback_func[11] != PDL_NO_FUNC)
- {
- rpdl_MTU2_func3_callback_func[11]();
- }
- }
- /* End of file */
|