From da1a9feade4afdb139d793aa9ad2ab28a397ada8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Fri, 22 Mar 2019 17:27:02 +0100 Subject: [PATCH] [bench] Do not light up the LED on init --- ion/src/device/bench/bench.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ion/src/device/bench/bench.cpp b/ion/src/device/bench/bench.cpp index ad8fe10d3..87629f4c0 100644 --- a/ion/src/device/bench/bench.cpp +++ b/ion/src/device/bench/bench.cpp @@ -36,7 +36,6 @@ void run() { ctx->fillRect(KDRect(0,0,Ion::Display::Width,Ion::Display::Height), KDColorWhite); ctx->drawString("BENCH", KDPoint((320-50)/2, (240-18)/2)); char command[kMaxCommandLength]; - Ion::LED::setColor(KDColorBlue); while (true) { Ion::Console::readLine(command, kMaxCommandLength); const CommandHandler * ch = sCommandList.dispatch(command);