From a74c6016f5330e412ecb43c0e492d4aa92eedc0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 6 Jan 2017 22:48:43 +0100 Subject: [PATCH] Disable LEDs by default because they make I2C communication unreliable on (at least) one prototype. --- right/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/right/src/main.c b/right/src/main.c index 7c3f11d..fec3fe7 100644 --- a/right/src/main.c +++ b/right/src/main.c @@ -61,7 +61,7 @@ static const uint8_t testData[] = void main() { InitPeripherials(); InitClock(); - LedDriver_InitAllLeds(1); + LedDriver_InitAllLeds(0); KeyMatrix_Init(&KeyMatrix); UsbKeyboadTask(); InitUsb();