mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-22 04:00:55 +00:00
Removed more debug output
This commit is contained in:
parent
290f0c6fc6
commit
83dbb49697
@ -339,7 +339,7 @@ uint32_t ESPUIclient::prepareJSONChunk(uint16_t startindex,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
DataOffset = uint16_t(FragmentRequest[F("offset")]);
|
DataOffset = uint16_t(FragmentRequest[F("offset")]);
|
||||||
control = ESPUI.getControlNoLock(ControlId, false);
|
control = ESPUI.getControlNoLock(ControlId);
|
||||||
if(nullptr == control)
|
if(nullptr == control)
|
||||||
{
|
{
|
||||||
Serial.println(String(F("ERROR:prepareJSONChunk:Fragmentation:Requested control: ")) + String(ControlId) + F(" does not exist"));
|
Serial.println(String(F("ERROR:prepareJSONChunk:Fragmentation:Requested control: ")) + String(ControlId) + F(" does not exist"));
|
||||||
|
@ -69,8 +69,6 @@ void Control::MarshalControl(JsonObject & _item, bool refresh, uint32_t Starting
|
|||||||
Serial.println(String("MarshalControl:length: ") + String(length));
|
Serial.println(String("MarshalControl:length: ") + String(length));
|
||||||
Serial.println(String("MarshalControl:StartingOffset: ") + String(StartingOffset));
|
Serial.println(String("MarshalControl:StartingOffset: ") + String(StartingOffset));
|
||||||
Serial.println(String("MarshalControl:maxLength: ") + String(maxLength));
|
Serial.println(String("MarshalControl:maxLength: ") + String(maxLength));
|
||||||
*/
|
|
||||||
// indicate that no additional controls should be sent
|
|
||||||
|
|
||||||
if(0 == StartingOffset)
|
if(0 == StartingOffset)
|
||||||
{
|
{
|
||||||
@ -80,12 +78,14 @@ void Control::MarshalControl(JsonObject & _item, bool refresh, uint32_t Starting
|
|||||||
{
|
{
|
||||||
Serial.println(String("MarshalControl: Next fragement. ID: ") + String(id));
|
Serial.println(String("MarshalControl: Next fragement. ID: ") + String(id));
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
// indicate that no additional controls should be sent
|
||||||
_item[F("type")] = uint32_t(ControlType::Fragment);
|
_item[F("type")] = uint32_t(ControlType::Fragment);
|
||||||
_item[F("id")] = id;
|
_item[F("id")] = id;
|
||||||
|
|
||||||
length = min((length - StartingOffset), maxLength);
|
length = min((length - StartingOffset), maxLength);
|
||||||
Serial.println(String("MarshalControl:Final length: ") + String(length));
|
// Serial.println(String("MarshalControl:Final length: ") + String(length));
|
||||||
|
|
||||||
_item[F("offset")] = StartingOffset;
|
_item[F("offset")] = StartingOffset;
|
||||||
_item[F("length")] = length;
|
_item[F("length")] = length;
|
||||||
|
Loading…
Reference in New Issue
Block a user