forked from arduino-libraries/MKRGSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
83 lines (53 loc) · 2.93 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
MKRGSM ?.?.? - ????.??.??
MKRGSM 1.4.2 - 2019.06.18
* fixed compilation under gcc 7.4.0
MKRGSM 1.4.1 - 2019.04.15
* Corrected GSMClient::connect(...) return code on failure
* Corrected manage SSL profile AT command for GSMSSLClient
* Replaced bundled "Amazon Root CA 1" root certificate with "Starfield Services Root Certificate Authority - G2 root CA"
MKRGSM 1.4.0 - 2019.03.26
* GSMBand, BandManagement example: Added support for 1800 MHz and UMTS 2100 MHz bands.
* Added GSMModem::getICCID() API.
* Added MODEM.setBaudRate(...) and MODEM.debug(print) API's. Thanks @dzindra.
* Added Amazon Root CA 1.
MKRGSM 1.3.3 - 2019.01.15
* Fixed GSMClient::write for write lengths of > 256.
MKRGSM 1.3.2 - 2018.12.17
* Fixed one character SMS not being received correctly
* Fixed warning and incorrect enum comparison in GSM::shutdown()
MKRGSM 1.3.1 - 2018.11.12
* Changed where required, in MKRGSM's examples, the server's URL arduino.cc\80 in example.org\80, because http://arduino.cc will be no longer available
* Updated src/GSMClient.cpp in order to support asynchronous use of MKRGSM's library, moved the state assignment in the first line of stop() API. Thanks @Nels52
* Added GSM status check in GSM::shutdown() to fix socket close errors generation by consecutive shutdown API's calling
MKRGSM 1.3.0 - 2018.10.22
* Changed GSM to GSM_OFF. Thanks @FrancMunoz
* Added GSM::getLocalTime() API. Thanks @FrancMunoz
* Added socket buffer to improve TCP socket read performance
* Replaced boolean type with bool in examples. Thanks @per1234
* Changed AT command handling to wait at least 20 ms for URC's, after receiving an AT command response before sending a new command. Thanks @FrancMunoz
* Added root SSL certs and enabled SSL cert validation
* Added GSM::setTimeout(...) and GPRS::setTimeout(...) API's
* Added GSM::status() API
MKRGSM 1.2.1 - 2018.09.13
* Fixed GPRS credentials (username and password) not being used by the modem. Now auth type is set to automatic.
MKRGSM 1.2.0 - 2018.07.23
* Added MODEM.noDebug() API to disable debug output
* GSM::isAccessAlive() now checks if network is registered
* Added timeout to ping operations
* Added GPRS::status() API to retrieve the current GPRS status
* Fixed GSMClient::write(uint8_t c)
MKRGSM 1.1.2 - 2018.02.20
* Improved stability of low power mode
* Improved stability and performance when using GSMClient and GSMUDP
MKRGSM 1.1.1 - 2018.01.24
* Fixed GSMServer.available() behaviour when client.stop() is called on an accepted socket
MKRGSM 1.1.0 - 2018.01.02
* Added new GSMLocation API
* Fixed GSMClient write failing for lengths of 512 or over
* Removed use of double negatives and corrected some bit wise ANDs with logical ANDs in example sketches
MKRGSM 1.0.2 - 2017.12.11
* Added new GPRSPing, GsmSSLWebClient, GPRSUdpNtpClient and SerialGSMPassthrough example sketches
MKRGSM 1.0.1 - 2017.12.04
* Examples updated with support for the Arduino Create secret tab
MKRGSM 1.0.0 - 2017.11.29
* Initial release