/* ** ################################################################### ** ** Filename : Events.H ** ** Project : RTIshare ** ** Processor : MC68HC908AZ60ACFU ** ** Componenttype : Events ** ** Version : Driver 01.01 ** ** Compiler : Metrowerks HC08 C Compiler ** ** Date/Time : 06.10.2003, 14:14 ** ** Abstract : ** ** This is user's event module. ** Put your event handler code here. ** ** Settings : ** ** ** Contents : ** ** timer2_OnInterrupt - void timer2_OnInterrupt(void); ** timer1_OnInterrupt - void timer1_OnInterrupt(void); ** ** ** Copyright: 1997 - 2009 Freescale Semiconductor, Inc. All Rights Reserved. ** ** ** ** http : www.freescale.com ** mail : support@freescale.com ** ** ################################################################### */ #ifndef __Events_H #define __Events_H /* MODULE Events */ #include "PE_Types.h" #include "PE_Error.h" #include "PE_Const.h" #include "IO_Map.h" #include "shareTmr.h" #include "timer1.h" #include "timer2.h" void timer2_OnInterrupt(void); /* ** =================================================================== ** Event : timer2_OnInterrupt (module Events) ** ** From Component : timer2 [TimerInt] ** Description : ** When a timer interrupt occurs this event is called (only ** when the Component is enabled - "Enable" and the events are ** enabled - "EnableEvent"). ** Parameters : None ** Returns : Nothing ** =================================================================== */ void timer1_OnInterrupt(void); /* ** =================================================================== ** Event : timer1_OnInterrupt (module Events) ** ** From Component : timer1 [TimerInt] ** Description : ** When a timer interrupt occurs this event is called (only ** when the Component is enabled - "Enable" and the events are ** enabled - "EnableEvent"). ** Parameters : None ** Returns : Nothing ** =================================================================== */ void Cpu_OnSwINT(void); /* ** =================================================================== ** Event : Cpu_OnSwINT (module Events) ** ** From Component : Cpu [MC9S08GB60] ** Description : ** This software event is called after software reset. ** Parameters : None ** Returns : Nothing ** =================================================================== */ /* END Events */ #endif /* __Events_H*/ /* ** ################################################################### ** ** This file was created by Processor Expert 03.33 for ** the Freescale HC08 series of microcontrollers. ** ** ################################################################### */