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).
93
98
94
-
More modems may be supported later:
95
-
-[ ] Quectel M10, UG95
96
-
-[ ] SIMCom SIM7020
97
-
-[ ] Telit GL865
98
-
-[ ] ZTE MG2639
99
-
-[ ] Hi-Link HLK-RM04
100
-
101
99
Watch this repo for new updates! And of course, contributions are welcome ;)
102
100
103
101
## Features
@@ -110,6 +108,7 @@ Watch this repo for new updates! And of course, contributions are welcome ;)
110
108
- ESP8266 - 5
111
109
- Neoway M590 - 2
112
110
- Quectel BG96 - 12
111
+
- Quectel BG95 - 12
113
112
- Quectel M95 - 6
114
113
- Quectel MC60/MC60E - 6
115
114
- Sequans Monarch - 6
@@ -118,17 +117,18 @@ Watch this repo for new updates! And of course, contributions are welcome ;)
118
117
- SIM7000 - 8 possible without SSL, only 2 with
119
118
- SIM 7070/7080/7090 - 12
120
119
- SIM 7500/7600/7800 - 10
120
+
- SIM A7672X - 10
121
121
- u-blox 2G/3G - 7
122
122
- u-blox SARA R4/N4 - 7
123
123
- Digi XBee - _only 1 connection supported!_
124
124
- UDP
125
125
- Not yet supported on any module, though it may be some day
126
126
- SSL/TLS (HTTPS)
127
127
- Supported on:
128
-
- SIM800, SIM7000, u-Blox, XBee _cellular_, ESP8266, and Sequans Monarch
128
+
- SIM800, SIM7000, A7672X, u-Blox, XBee _cellular_, ESP8266, Sequans Monarch and Quectel BG95 and BG96
129
129
- Note: **only some device models or firmware revisions have this feature** (SIM8xx R14.18, A7, etc.)
0 commit comments