/** ################################################################### ** Filename : Events.H ** Project : Capture ** Processor : MC9S12C32CFU ** Componenttype : Events ** Version : Driver 01.01 ** Compiler : Metrowerks HC12 C Compiler ** Date/Time : 27.08.2003, 10:19 ** Abstract : ** This is user's event module. ** Put your event handler code here. ** Settings : ** Contents : ** TO1_OnFalling - void TO1_OnFalling(void); ** Cap1_OnCapture - void Cap1_OnCapture(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 "Cap1.h" void Cap1_OnCapture(void); /* ** =================================================================== ** Event : Cap1_OnCapture (module Events) ** ** From Component : Cap1 [Capture] ** Description : ** This event is called on capturing of Timer/Counter actual ** value (only when the Component is enabled - <"Enable"> and the ** events are enabled - <"EnableEvent">. ** Parameters : None ** Returns : Nothing ** =================================================================== */ /* END Events */ #endif /* __Events_H*/ /* ** ################################################################### ** ** This file was created by Processor Expert 03.29 for ** the Freescale HCS12 series of microcontrollers. ** ** ################################################################### */