mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
First version under SVN is V4.0.1
This commit is contained in:
parent
243393860c
commit
b6df57c7e3
918 changed files with 269038 additions and 0 deletions
74
Demo/HCS12_CodeWarrior_small/CODE/Events.H
Normal file
74
Demo/HCS12_CodeWarrior_small/CODE/Events.H
Normal file
|
@ -0,0 +1,74 @@
|
|||
/** ###################################################################
|
||||
** Filename : Events.H
|
||||
** Project : RTOSDemo
|
||||
** Processor : MC9S12C32CFU
|
||||
** Beantype : Events
|
||||
** Version : Driver 01.01
|
||||
** Compiler : Metrowerks HC12 C Compiler
|
||||
** Date/Time : 17/05/2005, 08:36
|
||||
** Abstract :
|
||||
** This is user's event module.
|
||||
** Put your event handler code here.
|
||||
** Settings :
|
||||
** Contents :
|
||||
** vTaskTickInterrupt - void vTaskTickInterrupt(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
|
||||
** ###################################################################*/
|
||||
|
||||
#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 "PE_Timer.h"
|
||||
|
||||
void vTaskTickInterrupt(void);
|
||||
/*
|
||||
** ===================================================================
|
||||
** Event : vTaskTickInterrupt (module Events)
|
||||
**
|
||||
** From bean : TickTimer [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 ButtonInterrupt_OnInterrupt(void);
|
||||
/*
|
||||
** ===================================================================
|
||||
** Event : ButtonInterrupt_OnInterrupt (module Events)
|
||||
**
|
||||
** From bean : ButtonInterrupt [ExtInt]
|
||||
** Description :
|
||||
** This event is called when the active signal edge/level
|
||||
** occurs.
|
||||
** Parameters : None
|
||||
** Returns : Nothing
|
||||
** ===================================================================
|
||||
*/
|
||||
/* END Events */
|
||||
#endif /* __Events_H*/
|
||||
|
||||
/*
|
||||
** ###################################################################
|
||||
**
|
||||
** This file was created by UNIS Processor Expert 03.33 for
|
||||
** the Motorola HCS12 series of microcontrollers.
|
||||
**
|
||||
** ###################################################################
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue