Minor Update:
- DeviceCore: - Initialise params in header file - JSONparseCore: - Increase Read buffer to handle large queries - UtilCore: - Bug fix: handle NULL seperator in Hex conversions
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
// Global Vars
|
||||
extern char * ProcessName;
|
||||
extern CApplication * Application;
|
||||
//extern CApplication * Application;
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
@@ -30,20 +30,9 @@ extern CApplication * Application;
|
||||
CDeviceCore::CDeviceCore( const char * pName, const char * pType ) : CFunctionCore( pName, pType )
|
||||
{
|
||||
// Polling
|
||||
PollCycle = 0;
|
||||
PollStep = 0;
|
||||
PollInterval = 250;
|
||||
SetStartTime( &PollWait );
|
||||
|
||||
WaitingForReply = false;
|
||||
ReplyTimeout = 200;
|
||||
InvalidReply = false;
|
||||
|
||||
PollRetry = 0;
|
||||
MaxRetries = 3;
|
||||
|
||||
// Data Structures
|
||||
DeviceInit = true;
|
||||
ConfigTypes = new CDataMember();
|
||||
ValueTree = new CDataMember();
|
||||
JSONparse = new CJSONparse();
|
||||
|
||||
Reference in New Issue
Block a user