/*
** ###################################################################
**
**     Filename  : Events.C
**
**     Project   : Full1
** 
**     Processor : MC68HC908AZ60MFU
**
**     Beantype  : Events
**
**     Version   : Driver 01.00
**
**     Compiler  : Metrowerks HC08 C Compiler V-5.0.13
**
**     Date/Time : 2.4.2002, 9:36
**
**     Abstract  :
**
**         This is user's event module.
**         Put your event handler code here.
**
**     Settings  :
**
**
**     Contents  :
**
**         EInt1_OnInterrupt - void EInt1_OnInterrupt(void);
**         SM1_OnRxChar      - void SM1_OnRxChar(void);
**         SM1_OnTxChar      - void SM1_OnTxChar(void);
**         SM1_OnError       - void SM1_OnError(void);
**         AD2_OnEnd         - void AD2_OnEnd(void);
**         TI1_OnInterrupt   - void TI1_OnInterrupt(void);
**
**
**     (c) Copyright UNIS, spol. s r.o. 1997-2002
**
**     UNIS, spol. s r.o.
**     Jundrovska 33
**     624 00 Brno
**     Czech Republic
**
**     http      : www.processorexpert.com
**     mail      : info@processorexpert.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 "PWM1.h"
#include "PPG1.h"
#include "TI1.h"
#include "AD2.h"
#include "AS1.h"
#include "SM1.h"
#include "CAN1.h"
#include "Byte1.h"
#include "Bits1.h"
#include "Bits2.h"
#include "Bits3.h"
#include "Bit1.h"
#include "Bits4.h"
#include "Bits5.h"
#include "Bits6.h"
#include "EInt1.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"
#include "PE_Timer.h"
#include "PE_Cnvrt.h"

/*
** ===================================================================
**     Event       :  EInt1_OnInterrupt (module Events)
**
**     From bean   :  EInt1 [ExtInt]
**     Description :
**         This event is called when the active signal edge/level
**         occurs.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void EInt1_OnInterrupt(void)
{
  /* place your EInt1 interrupt procedure body here*/
}


/*
** ===================================================================
**     Event       :  SM1_OnRxChar (module Events)
**
**     From bean   :  SM1 [SynchroMaster]
**     Description :
**         This event is called after a correct character is
**         received.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void SM1_OnRxChar(void)
{
  /* Write your code here ... */
}

/*
** ===================================================================
**     Event       :  SM1_OnTxChar (module Events)
**
**     From bean   :  SM1 [SynchroMaster]
**     Description :
**         This event is called after a character is transmitted.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void SM1_OnTxChar(void)
{
  /* Write your code here ... */
}

/*
** ===================================================================
**     Event       :  SM1_OnError (module Events)
**
**     From bean   :  SM1 [SynchroMaster]
**     Description :
**         This event is called when a channel error (not the error
**         returned by a given method) occurs. The errors can be
**         read using GetError method.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void SM1_OnError(void)
{
  /* Write your code here ... */
}

/*
** ===================================================================
**     Event       :  AD2_OnEnd (module Events)
**
**     From bean   :  AD2 [ADconverter]
**     Description :
**         This event is called after a measurements (which consists
**         of 1 or more conversions) is finished.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void  AD2_OnEnd(void)
{
    /* Write your code here ... */
}


/*
** ===================================================================
**     Event       :  TI1_OnInterrupt (module Events)
**
**     From bean   :  TI1 [TimerInt]
**     Description :
**         When a timer interrupt occurs this event is called (only
**         when the bean is enabled - "Enable" and the events are
**         enabled - "EnableEvent").
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
void TI1_OnInterrupt(void)
{
  /* Write your code here ... */
}


/* END Events */

/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 02.84 for 
**     the Motorola HC08 series of microcontrollers.
**
** ###################################################################
*/
