You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
3
+
4
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5
+
and its stricter, better defined, brother [Common Changelog](https://common-changelog.org/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
***
9
+
10
+
11
+
## [Unreleased]
12
+
****
13
+
### Changed
14
+
15
+
### Added
16
+
17
+
### Removed
18
+
19
+
### Fixed
20
+
21
+
***
22
+
23
+
24
+
## [v0.12.0]
25
+
26
+
### Changed
27
+
- Moved bulk of waitResponse function to modem template and gave modems handleURCs fxn
28
+
- Moved option in waitResponse for verbose outputs.
29
+
- setBaud now returns a bool
30
+
- Replace new line consts with defines and renamed to AT_NL
31
+
- Renamed all RegStatus enums to be unique
32
+
- Replaced `NULL` with `nullptr` and replaced c-style casts.
33
+
- Moved setCertificates function and the certificate name matrix to the SSL template.
34
+
- Changed inputs for (unimplemented) SSL certificate functions.
35
+
- All modems will now return the pre-defined manufacturer and model in the name if the function to get the internal name fails.
36
+
- Cleaned up code for getting modem names.
37
+
- Made battery return types signed.
38
+
39
+
### Added
40
+
- Added support for SSL for the Quentcel BG95 and BG96 from [Aurelien BOUIN](https://github.com/aurelihein) and [George O'Connor](https://github.com/georgeman93)
41
+
- Added support for UBLOX SARA-R5 from [Sebastian Bergner](https://github.com/sebastianbergner)
42
+
- Added support for SIMCOM A7672X from [Giovanni de Rosso Unruh](https://github.com/giovannirosso)
43
+
- Added SIM5320 GPS location from [Bengarman](https://github.com/Bengarman)
44
+
- Added functions `getModemSerialNumber`, `getModemModel`, and `getModemRevision`.
45
+
- Added deep debugging option
46
+
- Added documentation to the FIFO class
47
+
48
+
### Removed
49
+
- Removed non-functional factory reset from SIM70xx series
50
+
51
+
### Fixed
52
+
- Removed extra wait on SIM7000 from [Mikael Fredriksson](https://github.com/Gelemikke)
53
+
- Fix status returns on ESP8266/ESP32 AT commands
54
+
- Fix length of HEX for Sequans Monarch
55
+
- Fix SIM7600 password then user when cid is set from [github0013](https://github.com/github0013)
56
+
- Fix cardinal points in location by gps for SIM7600 from [Juxn3](https://github.com/Juxn3)
57
+
- Fix NTP server sync for SIM70xx models from [Gonzalo Brusco](https://github.com/gonzabrusco)
- ... other modules, based on supported modems. Some boards require [**special configuration**](https://github.com/vshymanskyy/TinyGSM/wiki/Board-configuration).
95
99
96
-
More modems may be supported later:
97
-
-[ ] Quectel M10, UG95
98
-
-[ ] Telit GL865
99
-
-[ ] ZTE MG2639
100
-
-[ ] Hi-Link HLK-RM04
101
100
102
101
Watch this repo for new updates! And of course, contributions are welcome ;)
103
102
@@ -111,6 +110,7 @@ Watch this repo for new updates! And of course, contributions are welcome ;)
111
110
- ESP8266 - 5
112
111
- Neoway M590 - 2
113
112
- Quectel BG96 - 12
113
+
- Quectel BG95 - 12
114
114
- Quectel M95 - 6
115
115
- Quectel MC60/MC60E - 6
116
116
- Sequans Monarch - 6
@@ -119,17 +119,18 @@ Watch this repo for new updates! And of course, contributions are welcome ;)
119
119
- SIM7000 - 8 possible without SSL, only 2 with
120
120
- SIM 7070/7080/7090 - 12
121
121
- SIM 7500/7600/7800 - 10
122
+
- SIM A7672X - 10
122
123
- u-blox 2G/3G - 7
123
124
- u-blox SARA R4/N4 - 7
124
125
- Digi XBee - _only 1 connection supported!_
125
126
- UDP
126
127
- Not yet supported on any module, though it may be some day
127
128
- SSL/TLS (HTTPS)
128
129
- Supported on:
129
-
- SIM800, SIM7000, u-Blox, XBee _cellular_, ESP8266, and Sequans Monarch
130
+
- SIM800, SIM7000, A7672X, u-Blox, XBee _cellular_, ESP8266, Sequans Monarch and Quectel BG95 and BG96
130
131
- Note: **only some device models or firmware revisions have this feature** (SIM8xx R14.18, A7, etc.)
0 commit comments