From 8cfbafca8410ae9fc40a0bea535e2df8507c0603 Mon Sep 17 00:00:00 2001 From: "Philippe Z Lin (RD-TW)" Date: Fri, 15 Mar 2019 21:42:17 +0800 Subject: [PATCH] Compiles with ESP8266-2.5.0 and ArduinoJSON 6 --- ESP-sc-gway/_txRx.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ESP-sc-gway/_txRx.ino b/ESP-sc-gway/_txRx.ino index 75e6f46..d11c106 100644 --- a/ESP-sc-gway/_txRx.ino +++ b/ESP-sc-gway/_txRx.ino @@ -60,7 +60,7 @@ int sendPacket(uint8_t *buf, uint8_t length) // CFList (fill to 16 bytes) int i=0; - StaticJsonBuffer<312> jsonBuffer; + StaticJsonDocument<312> jsonBuffer; char * bufPtr = (char *) (buf); buf[length] = 0; @@ -73,9 +73,9 @@ int sendPacket(uint8_t *buf, uint8_t length) #endif // Use JSON to decode the string after the first 4 bytes. // The data for the node is in the "data" field. This function destroys original buffer - JsonObject& root = jsonBuffer.parseObject(bufPtr); + auto error = deserializeJson(jsonBuffer, bufPtr); - if (!root.success()) { + if (error) { #if DUSB>=1 if (( debug>=1) && (pdebug & P_TX)) { Serial.print (F("T sendPacket:: ERROR Json Decode")); @@ -94,6 +94,7 @@ int sendPacket(uint8_t *buf, uint8_t length) // {"txpk":{"codr":"4/5","data":"YCkEAgIABQABGmIwYX/kSn4Y","freq":868.1,"ipol":true,"modu":"LORA","powe":14,"rfch":0,"size":18,"tmst":1890991792,"datr":"SF7BW125"}} // Used in the protocol of Gateway: + JsonObject root = jsonBuffer.to(); const char * data = root["txpk"]["data"]; // Downstream Payload uint8_t psize = root["txpk"]["size"]; bool ipol = root["txpk"]["ipol"]; @@ -710,4 +711,3 @@ int receivePacket() return(0); // failure no message read }//receivePacket -