Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-09-23 10:52:11 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-09-23 10:52:11 +0300
commit547a0a987ea54acdfa955c85ccb23ba1810416a4 (patch)
tree6b4587772b0ff9d8f55f5eee33056b078888eacb /src/Version.h
parentfb6e581fabf851ae58a9e6c6c1323255db8f1a00 (diff)
Added comments about the version string format
Diffstat (limited to 'src/Version.h')
-rw-r--r--src/Version.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Version.h b/src/Version.h
index f732f40f..8896bea8 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -9,9 +9,10 @@
#define SRC_VERSION_H_
#ifndef VERSION
+// Note: the complete VERSION string must be in standard version number format and must not contain spaces! This is so that DWC can parse it.
# define MAIN_VERSION "3.4.0beta3+1"
# ifdef USE_CAN0
-# define VERSION_SUFFIX " (CAN0)"
+# define VERSION_SUFFIX "(CAN0)"
# else
# define VERSION_SUFFIX ""
# endif