/* ** ################################################################### ** ** Filename : Events.H ** ** Project : TimerOut ** ** Processor : MC9S08GB60 ** ** Componenttype : Events ** ** Version : Driver 01.00 ** ** Compiler : Metrowerks HCS08 C Compiler ** ** Date/Time : 06.10.2003, 15:02 ** ** Abstract : ** ** This is user's event module. ** Put your event handler code here. ** ** Settings : ** ** ** Contents : ** ** TO1_OnFalling - void TO1_OnFalling(void); ** TO1_OnRising - void TO1_OnRising(void); ** Cpu_OnSwINT - void Cpu_OnSwINT(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 "TO1.h" void TO1_OnFalling(void); /* ** =================================================================== ** Event : TO1_OnFalling (module Events) ** ** From Component : TO1 [TimerOut] ** Description : ** This event is called at falling edge of the output signal. ** (only when the Component is enabled - "Enable" and the events ** are enabled - "EnableEvent"). ** Parameters : None ** Returns : Nothing ** =================================================================== */ void TO1_OnRising(void); /* ** =================================================================== ** Event : TO1_OnRising (module Events) ** ** From Component : TO1 [TimerOut] ** Description : ** This event is called at rising edge of the output signal. ** (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 HCS08 series of microcontrollers. ** ** ################################################################### */