/* ** ################################################################### ** ** Filename : Events.C ** ** Project : OSD ** ** Processor : MC68HC908LD64IFU ** ** Componenttype : Events ** ** Version : Driver 01.00 ** ** Compiler : Metrowerks HC08 C Compiler ** ** Date/Time : 21.11.2002, 15:50 ** ** Abstract : ** ** This is user's event module. ** Put your event handler code here. ** ** Settings : ** ** ** Contents : ** ** OSD1_OnFinished - void OSD1_OnFinished(void); ** Cpu_OnSwINT - void Cpu_OnSwINT(void); ** ** ** Copyright: 1997 - 2009 Freescale Semiconductor, Inc. All Rights Reserved. ** ** ** ** http : www.freescale.com ** mail : support@freescale.com ** ** ################################################################### */ /* MODULE Events */ #pragma MESSAGE DISABLE C1420 /* WARNING C1420: Result of function-call is ignored */ /*Including used modules for compilling procedure*/ #include "Cpu.h" #include "Events.h" #include "OSD1.h" /*Include shared modules, which are used for whole project*/ #include "PE_Types.h" #include "PE_Error.h" #include "PE_Const.h" #include "IO_Map.h" /* ** =================================================================== ** Event : OSD1_OnFinished (module Events) ** ** From Component : OSD1 [OSD] ** Description : ** This event is called when the OSD has finished the row 15 ** display. ** Parameters : None ** Returns : Nothing ** =================================================================== */ void OSD1_OnFinished(void) { /* Write your code here ... */ } /* END OSD1. */ /* ** ################################################################### ** ** This file was created by Processor Expert 03.08 for ** the Freescale HC08 series of microcontrollers. ** ** ################################################################### */ /* ** =================================================================== ** Event : Cpu_OnSwINT (module Events) ** ** From Component : Cpu [MC68HC908LD64] ** Description : ** This software event is called after software reset. ** Parameters : None ** Returns : Nothing ** =================================================================== */ void Cpu_OnSwINT(void) { /* Write your code here ... */ } /* END Events */ /* ** ################################################################### ** ** This file was created by Processor Expert 03.08 for ** the Freescale HC08 series of microcontrollers. ** ** ################################################################### */