- Reworked the connection object and the IO system

- Reworked the support for TRICS
- Added a second generation motor
This commit is contained in:
koennecke
2009-02-03 08:05:39 +00:00
parent f6d595665e
commit 361ee9ebea
119 changed files with 16455 additions and 3674 deletions

26
background.h Normal file
View File

@@ -0,0 +1,26 @@
/**
* This is for backgrounding operations in SICS. They run in an own
* task.
*
* copyright: see file COPYRIGHT
*
* Mark Koennecke, February 2009
*/
#ifndef BACKGROUND_H_
#define BACKGROUND_H_
/**
* interpreter inteface
*/
int BackgroundAction(SConnection *pCon, SicsInterp *pSics,
void *pData, int argc, char *argv[]);
/*
* actual function which does the backgrounding
*/
int BackgroundCommand(SConnection *pCon, char *command);
/*
* used only once for installing Background
*/
void InstallBackground(SicsInterp *pSics);
#endif /*BACKGROUND_H_*/