Skip to content

Commit 055bb6f

Browse files
committed
v2.11
1 parent f69a73f commit 055bb6f

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
Change Log
22
======================
3+
4+
v2.11:
5+
---------
6+
7+
* Adds support for LPS28DFW Mode 2 (4060 hPa) - thank you @thebrownhobbit-commits #221
8+
* Updates the Dockerfile to include the required library versions
9+
* Adds `compile_with_docker.bat` to automatically generate the firmware binary - see [COMPILE_BINARY.md](./COMPILE_BINARY.md) for details
10+
* Updates the workflows to use the Dockerfile to generate the firmware binary
11+
12+
v2.10:
13+
---------
14+
15+
* Restructures the serial logging code in loop()
16+
* Where possible, residual serial data is written to file before closing
17+
* Allows all log files to be deleted via `RM *` or `DEL *` in the SD menu
18+
319
v2.9:
4-
* Adds support for the TMP102 temperature sensor
20+
---------
21+
22+
* Adds support for the TMP102 temperature sensor - thank you @summetj #200
523

624
v2.8:
725
---------
826

927
* Corrects the serial token timestamp printing - resolves #192
1028
* The charsReceived debug print ("Total chars received: ") now excludes the length of the timestamps
1129
* Consistent use of File32/ExFile/FsFile/File. Don't use SdFile for temporary files
30+
* Corrects the KX134 32G menu option - resolves #197
1231

1332
v2.7:
1433
---------

Firmware/OpenLog_Artemis/OpenLog_Artemis.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,13 @@
167167
v2.10
168168
Restructure the serial logging code in loop()
169169
Where possible, write residual serial data to file before closing
170+
171+
v2.11
172+
Add support for LPS28DFW Mode 2 (4060 hPa) - thank you @thebrownhobbit-commits #221
170173
*/
171174

172175
const int FIRMWARE_VERSION_MAJOR = 2;
173-
const int FIRMWARE_VERSION_MINOR = 10;
176+
const int FIRMWARE_VERSION_MINOR = 11;
174177

175178
//Define the OLA board identifier:
176179
// This is an int which is unique to this variant of the OLA and which allows us
@@ -180,7 +183,7 @@ const int FIRMWARE_VERSION_MINOR = 10;
180183
// the variant * 0x100 (OLA = 1; GNSS_LOGGER = 2; GEOPHONE_LOGGER = 3)
181184
// the major firmware version * 0x10
182185
// the minor firmware version
183-
#define OLA_IDENTIFIER 0x12A // Stored as 298 decimal in OLA_settings.txt
186+
#define OLA_IDENTIFIER 0x12B // Stored as 299 decimal in OLA_settings.txt
184187

185188
//#define noPowerLossProtection // Uncomment this line to disable the sleep-on-power-loss functionality
186189

0 commit comments

Comments
 (0)