/* ** ################################################################### ** ** Filename : Events.C ** ** Project : AsSerial ** ** Processor : 68HC908AZ60 ** ** Componenttype : Events ** ** Version : Driver 01.00 ** ** Compiler : Metrowerks HC08 C Compiler V-5.0.13 ** ** Date/Time : 23.01.2002, 13:54 ** ** Abstract : ** ** This is user's event module. ** Put your event handler code here. ** ** Settings : ** ** ** Contents : ** ** AS1_OnFullRxBuf - void AS1_OnFullRxBuf(void); ** AS1_OnFreeTxBuf - void AS1_OnFreeTxBuf(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 "AS1.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 : AS1_OnFullRxBuf (module Events) ** ** From Component : AS1 [AsynchroSerial] ** Description : ** This event is called when the input buffer is full. ** Parameters : None ** Returns : Nothing ** =================================================================== */ void AS1_OnFullRxBuf(void) { /* Write your code here ... */ } /* ** =================================================================== ** Event : AS1_OnFreeTxBuf (module Events) ** ** From Component : AS1 [AsynchroSerial] ** Description : ** This event is called after the last character in output ** buffer is transmitted. ** Parameters : None ** Returns : Nothing ** =================================================================== */ void AS1_OnFreeTxBuf(void) { /* Write your code here ... */ } /* ** =================================================================== ** Event : Cpu_OnSwINT (module Events) ** ** From Component : Cpu [MC9S08GB60] ** 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 02.80 for ** the Freescale HC08 series of microcontrollers. ** ** ################################################################### */