Skip to content

Commit 00dd231

Browse files
committed
MCU8MASS-960 MCU8MASS-961 Bump version and fix a bug where the waitForURC would return true even if it hadn't received an URC
1 parent 4a74b6a commit 00dd231

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,20 @@ No changes
124124
* Fix a bug where waking up from power down mode would reset the board
125125
* Fix a bug where it was wrongly reported that the SIM card was not ready
126126

127+
127128
# 1.3.2
128129

130+
Internal build
131+
132+
133+
# 1.3.3
134+
129135
## Features
130136
* Add ability to add HTTP headers
137+
* Add ability for specifying content type for HTTP POST requests
131138

132139
## Changes
133-
* Security profile patch is removed as this is now taken care of by NTP synchronization
140+
* Security profile patch is removed as this is now taken care of by NTP synchronization
141+
142+
## Bugfix
143+
* Fix a bug where Sequans.waitForURC would return true even when the URC was not received

examples/sandbox/sandbox.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* experience
44
*/
55

6-
#define SANDBOX_VERSION "1.3.1"
6+
#define SANDBOX_VERSION "1.3.3"
77

88
#include <ArduinoJson.h>
99
#include <ecc608.h>

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AVR-IoT-Cellular
2-
version=1.3.1
2+
version=1.3.3
33
author=Microchip Technology Inc. <simen.gangstad@microchip.com>
44
maintainer=Microchip Technology Inc. <simen.gangstad@microchip.com>
55
sentence=Library for the AVR-IoT Cellular Mini Board

src/sequans_controller.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,9 +900,10 @@ bool SequansControllerClass::waitForURC(const char* urc_identifier,
900900
if (out_buffer != NULL) {
901901
memcpy(out_buffer, wait_for_urc_buffer, out_buffer_size);
902902
}
903+
903904
return true;
904905
} else {
905-
return true;
906+
return false;
906907
}
907908
}
908909

0 commit comments

Comments
 (0)