Skip to content

Commit 8c9499b

Browse files
committed
v1.10
1 parent 252d125 commit 8c9499b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Firmware/OpenLog_Artemis/OpenLog_Artemis.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@
8686
(done) Add support for the SGP40 VOC Index sensor
8787
(done) Add support for the SDP3X Differential Pressure sensor
8888
(done) Add support for the MS5837 - as used in the BlueRobotics BAR02 and BAR30 water pressure sensors
89+
(done) Correct an issue which was causing the OLA to crash when waking from sleep and outputting serial data https://github.com/sparkfun/OpenLog_Artemis/issues/79
8990
*/
9091

9192
const int FIRMWARE_VERSION_MAJOR = 1;
92-
const int FIRMWARE_VERSION_MINOR = 9;
93+
const int FIRMWARE_VERSION_MINOR = 10;
9394

9495
//Define the OLA board identifier:
9596
// This is an int which is unique to this variant of the OLA and which allows us
@@ -99,7 +100,7 @@ const int FIRMWARE_VERSION_MINOR = 9;
99100
// the variant * 0x100 (OLA = 1; GNSS_LOGGER = 2; GEOPHONE_LOGGER = 3)
100101
// the major firmware version * 0x10
101102
// the minor firmware version
102-
#define OLA_IDENTIFIER 0x119 // Stored as 281 decimal in OLA_settings.txt
103+
#define OLA_IDENTIFIER 0x11A // Stored as 282 decimal in OLA_settings.txt
103104

104105
#include "settings.h"
105106

0 commit comments

Comments
 (0)