Embedded Systems
digitaos.txt
Associated article: The Digita OS: An Extensible Imaging Platform
Tags: Database Tools Embedded Systems Design
Published source code accompanying the article by Carlos E. Vidales and Eugene M. Farrelly in which they examine the Digita operating system from Flashpoint which has been designed for digital cameras. It supports all the basic camera features (including a GUI), and lets you extends the functionality of devices through scripts and applications.
The DigitaOS: An Extensible Imaging Platform
by Carlos E. Vidales and Eugene M. Farrelly
Listing One
#include <FPApplicationManager.h>
#include <FPEventManager.h>
TVoidPtr entry(void)
{
TAMAppID appId ;
TEMEventRecord * theEvent ;
TBoolean doExit ;
AppInit() ;
RegisterForEvents() ;
while( !doExit )
{
EMGetEvent( ...


