mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 09:49:32 +02:00
* Fix issue with % in log output conflicting with templating character
* Fix issue with % in log output conflicting with templating character - Split index_html string in header and footer part - Use header and footer for index html template page - Fix missing html and head tags in minified index html. - Do not use templating engine for debug and can log pages, by using index html header and footer directly in generated content. * Change pct to %. * Revert "Fix crash caused by percentage char" This reverts commit04a68fc89e
. The original commit only fixed the symptoms, the cause has been fixed, now we ran revert these. * Revert "Remove percentage sign from logging" This reverts commitaf05f28755
. The original commit only fixed the symptoms, the cause has been fixed, now we ran revert these.
This commit is contained in:
parent
850031ccf9
commit
3d1f535b09
16 changed files with 111 additions and 93 deletions
|
@ -2713,7 +2713,7 @@ void print_SOC(char* header, int SOC) {
|
|||
if (hundredth < 10)
|
||||
logging.print(0);
|
||||
logging.print(hundredth);
|
||||
logging.println("pct");
|
||||
logging.println("%");
|
||||
}
|
||||
|
||||
void printFaultCodesIfActive() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue