1 /** ###################################################################
4 ** Processor : MC9S12C32CFU
6 ** Version : Driver 01.01
7 ** Compiler : Metrowerks HC12 C Compiler
8 ** Date/Time : 17/05/2005, 08:36
10 ** This is user's event module.
11 ** Put your event handler code here.
14 ** vTaskTickInterrupt - void vTaskTickInterrupt(void);
16 ** (c) Copyright UNIS, spol. s r.o. 1997-2002
21 ** http : www.processorexpert.com
22 ** mail : info@processorexpert.com
23 ** ###################################################################*/
27 /*Including used modules for compilling procedure*/
31 #include "TickTimer.h"
32 #include "ButtonInterrupt.h"
34 /*Include shared modules, which are used for whole project*/
42 ** ===================================================================
43 ** Event : vTaskTickInterrupt (module Events)
45 ** From bean : TickTimer [TimerInt]
47 ** When a timer interrupt occurs this event is called (only
48 ** when the bean is enabled - "Enable" and the events are
49 ** enabled - "EnableEvent").
52 ** ===================================================================
54 void vTaskTickInterrupt(void)
56 /* Write your code here ... */
61 ** ===================================================================
62 ** Event : ButtonInterrupt_OnInterrupt (module Events)
64 ** From bean : ButtonInterrupt [ExtInt]
66 ** This event is called when the active signal edge/level
70 ** ===================================================================
72 void ButtonInterrupt_OnInterrupt(void)
74 /* place your ButtonInterrupt interrupt procedure body here */
81 ** ###################################################################
83 ** This file was created by UNIS Processor Expert 03.33 for
84 ** the Motorola HCS12 series of microcontrollers.
86 ** ###################################################################