Skip to content

Commit 7aee025

Browse files
committed
Release of version 2.1.1
1 parent 918276b commit 7aee025

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

AWS-IoT-Arduino-Yun-Library/aws_iot_mqtt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ IoT_Error_t aws_iot_mqtt_client::getJSONValueLoop(const char* JSONIdentifier, co
748748
sprintf(rw_buf, "%d\n", isFirst);
749749
exec_cmd(rw_buf, true, false);
750750

751-
if(strncmp(rw_buf, "J F", 3) == 0) {break;} // End of JSON value string transmission
751+
if(strncmp(rw_buf, "J0F", 3) == 0) {break;} // End of JSON value string transmission
752752
else if(strncmp(rw_buf, "J1F", 3) == 0) {
753753
rc = NO_SET_UP_ERROR;
754754
break;

AWS-IoT-Arduino-Yun-Library/aws_iot_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#define VERSION_MAJOR 2
2020
#define VERSION_MINOR 1
21-
#define VERSION_PATCH 0
21+
#define VERSION_PATCH 1
2222
#define VERSION_TAG ""
2323

2424
#endif

AWS-IoT-Arduino-Yun-Library/keywords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ shadow_update KEYWORD2
1919
shadow_delete KEYWORD2
2020
getDesiredValueByKey KEYWORD2
2121
getReportedValueByKey KEYWORD2
22+
getDeltaValueByKey KEYWORD2
2223
getValueByKey KEYWORD2
2324
configBackoffTiming KEYWORD2
2425
configOfflinePublishQueue KEYWORD2

AWS-IoT-Python-Runtime/lib/comm/serialCommunicationServer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,5 @@ def writeToExternalJSON(self):
148148
self._log.writeLog("JSON: Send through serial to remote client. Chunk: " + self._txBuf + " Size: " + str(len(self._txBuf)))
149149
self._jsonBuf = self._jsonBuf[self._chunkSize:]
150150
else:
151-
self._basicOutput("J F: No JSON chunks.")
151+
self._basicOutput("J0F: No JSON chunks.")
152152
self._log.writeLog("No more chunks for this JSON payload. Exiting writeToExternalJSON.")

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#2.1.1 (May 23th, 2016)
2+
Features:
3+
4+
N/A
5+
6+
Bugfixes.Improvements:
7+
8+
* Fixed issue in retrieving shadow JSON key/value pair where value starts with a certain letter conflicts with the internal protocol.
9+
110
# 2.1.0 (May 11th, 2016)
211
Features:
312

0 commit comments

Comments
 (0)