Important Update:

- JSONparseCore:
  - Bug fix: Incorrectly terminated PrintString on null
- SelectableCore:
  - Add BaudRate, DataBits, Parity, StopBits, FlowCtrl, DataWait to THandle
  - Include Serial Port setup in SetPortHandle()
  - Read Serial Port config in LoadConfigData()
  - Rename SetSerialConfig() -> ConfigureSerialPort()
  - Configure Serial Port immediately after opening port
This commit is contained in:
Charl Wentzel
2017-11-29 11:30:05 +02:00
parent 89123fa4af
commit 92ce01a3b7
3 changed files with 64 additions and 43 deletions

View File

@@ -755,7 +755,7 @@ bool CJSONparse::PrintString( char * String, int Len )
write( OutputHandle, Mark, (BufPos-Mark) );
// Handle special chars
if (!*BufPos) {
if (BufPos-String >= Len) {
break;
}
else {