Skip to content

Commit d6527c7

Browse files
committed
menuFirmware: Declare any major version >= 99 as DEVELOPER
1 parent b132b67 commit d6527c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Everywhere/menuFirmware.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void firmwareVersionFormat(uint8_t major, uint8_t minor, char *buffer, int buffe
137137
char prefix;
138138

139139
// Construct the full or release candidate version number
140-
prefix = ENABLE_DEVELOPER ? 'd' : 'v';
140+
prefix = (ENABLE_DEVELOPER || (major >= 99)) ? 'd' : 'v';
141141
if (enableRCFirmware && (bufferLength >= 21))
142142
// 123456789012345678901
143143
// pxxx.yyy-dd-mmm-yyyy0

0 commit comments

Comments
 (0)