/* ** ################################################################### ** ** Filename : Events.H ** ** Project : ExtInt ** ** Processor : MC68HC908AZ60ACFU ** ** Componenttype : Events ** ** Version : Driver 01.01 ** ** Compiler : Metrowerks HC08 C Compiler ** ** Date/Time : 06.10.2003, 09:31 ** ** Abstract : ** ** This is user's event module. ** Put your event handler code here. ** ** Settings : ** ** ** Contents : ** ** EInt1_OnInterrupt - void EInt1_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 "EInt1.h" /* ** =================================================================== ** Event : EInt1_OnInterrupt (module Events) ** ** From Component : EInt1 [ExtInt] ** Description : ** This event is called when the active signal edge/level ** occurs. ** Parameters : None ** Returns : Nothing ** =================================================================== */ void EInt1_OnInterrupt(void); /* END Events */ #endif /* __Events_H*/ /* ** ################################################################### ** ** This file was created by Processor Expert 03.33 for ** the Freescale HC08 series of microcontrollers. ** ** ################################################################### */