- Currently disabled attempts at logging commands

- Added a warning for excessive data rates on monitors
- Added statistics to devser and thus to scriptcontext
- Added byte concatenation to dynstring
- Added aborting for reflection generation to fourmess.c
- Added data checksum testing to hipadaba, use for update tests
- Fixed interrupt discovery in network.c, caused invalid interrupt
  codes which in turn confused sicscron which had to be fixed too.
- Renamed ubcalc into ubcalcint in order to reclaim the ubcalc for Jurg
- Added an a3offset to tasub in order to fix what I perceive an IS problem
- Added support for the newer version of the Siemens SPS, the S7
- Added a not yet fully working sinqhttpopt driver which talks to
  http HM without libghttp
This commit is contained in:
koennecke
2010-12-20 10:18:03 +00:00
parent 598f4a65af
commit ccae9f0d16
9 changed files with 1183 additions and 95 deletions

3
psi.c
View File

@ -65,6 +65,7 @@ void SiteInit(void)
*/
INIT(AddJulChoProtocoll);
INIT(AddHttpProtocoll);
INIT(AddHttpOptProtocoll);
INIT(AddPMACProtocoll);
INIT(AddPfeifferProtocoll);
INIT(AddTermProtocoll);
@ -112,7 +113,9 @@ static void AddPsiCommands(SicsInterp * pInter)
SCMD("MakeSansliRebin", MakeSansliRebin);
SCMD("MakeSANSWave", MakeSANSWave);
SCMD("MakeSinq", SinqFactory);
SCMD("MakeSinqRedirect", SinqRedirectFactory);
SCMD("MakeSPS", SPSFactory);
SCMD("MakeSPSS7", MakeSPSS7);
PCMD("MakeSWHPMotor", MakeSWHPMotor);
SCMD("MakeSWMotor", MakeSWMotor);
SCMD("MakeTableDrive", TableDriveFactory);