diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..10f26c0d --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +docker-compose run --rm builder /bin/bash /build/ci/buildAll.sh \ No newline at end of file diff --git a/source/Core/Threads/GUIThread.cpp b/source/Core/Threads/GUIThread.cpp index f6bcd8a5..f05d325d 100644 --- a/source/Core/Threads/GUIThread.cpp +++ b/source/Core/Threads/GUIThread.cpp @@ -547,7 +547,13 @@ static void gui_solderingMode(uint8_t jumpToSleep) { OLED::setCursor(0, 8); OLED::print(SleepingTipAdvancedString); gui_drawTipTemp(true); - OLED::print(SymbolSpace); + + if (boostModeOn) { + OLED::print(SymbolPlus); + } else { + OLED::print(SymbolSpace); + } + printVoltage(); OLED::print(SymbolVolts); } else {