Skip to content

Commit

Permalink
Updated version string to v1.0.1 for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Niedermaier committed Feb 4, 2025
1 parent d9abc09 commit f811ba5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion software/stm32/Core/Src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ void Fdisplay(void const * argument)
secondsAfterStart++;
// Display showing Cybics string and IP
if(0==displayScreen){
snprintf(displayText, sizeof(displayText), "%-16s", "CybICS v1.0.0");
snprintf(displayText, sizeof(displayText), "%-16s", "CybICS v1.0.1");
Lcd_cursor(&lcd, 0, 0);
Lcd_string(&lcd, displayText);
snprintf(displayText, sizeof(displayText), "%16li", secondsAfterStart);
Expand Down Expand Up @@ -651,6 +651,7 @@ void Fdisplay(void const * argument)
Lcd_cursor(&lcd, 0, 0);
Lcd_string(&lcd, displayText);
snprintf(displayText, sizeof(displayText), "%-16s", TxDataUID);
displayText[12]=' '; // removing the 1, which is not part of the UID
Lcd_cursor(&lcd, 1, 0);
Lcd_string(&lcd, displayText);
}
Expand Down

0 comments on commit f811ba5

Please sign in to comment.