Embedded Systems
kertesy.txt
Associated article: KeRTESy: A Real-Time Event-Driven Microkernel
Tags: Embedded Systems
Published source code accompanying the article by B. Sain and Timothy A. Gonsalves in which they present "Kertesy," a real-time microkernel for embedded systems designed around Analog Devices' ADSP-21xx series of digital-signal processors. Also see KERTESY.ZIP.
_KeRTESy: A Real-Time Event-Driven Microkernel_
by B. Sain and T. A. Gonsalves
Listing One
/* BEGIN: thermostat.c */
#include "kertesy.h"
#eventfile "eventdefs.c"
typedef prilevels PriDanger, PriNormal, PriLow;
void Thread1()
{
InPort(HEATER_DATA_PORT, currTemp);
}
void ...


