Skip to content

Commit

Permalink
move legible uptime to separate output line,
Browse files Browse the repository at this point in the history
... but keep it rendered in the same line (i.e. no <br>)
  • Loading branch information
DE-cr committed Oct 14, 2023
1 parent 0b9e5d0 commit d96e605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BSB_LAN/BSB_LAN.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2154,7 +2154,7 @@ void generateConfigPage(void) {
unsigned long m = s / 60;
unsigned long h = m / 60;
unsigned d = h / 24;
printFmtToWebClient(PSTR(MENU_TEXT_UPT ": %lu ms = %ud+%02lu:%02lu:%02lu.%03lu<BR>\r\n"), ms, d, h%24, m%60, s%60, ms%1000);
printFmtToWebClient(PSTR(MENU_TEXT_UPT ": %lu\r\nms = %ud+%02lu:%02lu:%02lu.%03lu<BR>\r\n"), ms, d, h%24, m%60, s%60, ms%1000);
#ifndef WEBCONFIG
printlnToWebClient(PSTR(MENU_TEXT_BUS ": "));
int bustype = bus->getBusType();
Expand Down

0 comments on commit d96e605

Please sign in to comment.