Embedded Systems
tcl.txt
Associated article: Graphical Embedded Real-Time Systems
Tags: Embedded Systems
Published source code accompanying the article by Harry Beker in which he describes how he uses VME-based distributed embedded microprocessors to read data from transparently-interfaced instrumentation busses when developing data-acquisition systems for high-energy physics experiments. Also see TCL.ZIP.
GRAPHICAL REAL-TIME SYSTEMS
by Harry Beker
Listing One
#include <tcl.h>
#include <tk.h>
Tcl_Interp *globint;
int start_run(ClientData clientData,Tcl_Interp *interp,int argc,char** argv)
{ /* start other tasks */
return TCL_OK;
}
int ...


