File tree Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 11Change 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+
319v2.9:
4- * Adds support for the TMP102 temperature sensor
20+ ---------
21+
22+ * Adds support for the TMP102 temperature sensor - thank you @summetj #200
523
624v2.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
1332v2.7:
1433---------
Original file line number Diff line number Diff line change 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
172175const 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
You can’t perform that action at this time.
0 commit comments