Skip to content

Commit

Permalink
fix LABDOS version string
Browse files Browse the repository at this point in the history
  • Loading branch information
slimonslimon committed Feb 25, 2023
1 parent f187a6e commit 21c8579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fw/LABDOS/LABDOS.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#define RANGE ZERO-12

#if CHANNELS==1024
String FWversion = XSTR(MAJOR)"."XSTR(MINOR)".GHRELEASE-GHBUILD-GHBUILDTYPE.L500_"; // 500 effective channels for 1024 ADC channels
String FWversion = XSTR(MAJOR)"."XSTR(MINOR)"."XSTR(GHRELEASE)"-"XSTR(GHBUILD)"-"XSTR(GHBUILDTYPE)".L500_"; // 500 effective channels for 1024 ADC channels
#else
String FWversion = XSTR(MAJOR)"."XSTR(MINOR)".GHRELEASE-GHBUILD-GHBUILDTYPE-.L244_"; // 244 effective channels for 512 ADC channels
String FWversion = XSTR(MAJOR)"."XSTR(MINOR)"."XSTR(GHRELEASE)"-"XSTR(GHBUILD)"-"XSTR(GHBUILDTYPE)".L244_"; // 244 effective channels for 512 ADC channels
#endif

#define MAXFILESIZE MAX_MEASUREMENTS * BYTES_MEASUREMENT // in bytes, 4 MB per day, 28 MB per week, 122 MB per month
Expand Down

0 comments on commit 21c8579

Please sign in to comment.