From 1d359ef22e1ffb8a5c07a2736032a30576f62106 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 29 Jan 2020 15:15:30 -0700 Subject: [PATCH] Fix backlight levels --- src/board/system76/galp3-c/kbled.c | 12 ++++++------ src/board/system76/lemp9/kbled.c | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/board/system76/galp3-c/kbled.c b/src/board/system76/galp3-c/kbled.c index 40d7371..c4a02b7 100644 --- a/src/board/system76/galp3-c/kbled.c +++ b/src/board/system76/galp3-c/kbled.c @@ -3,12 +3,12 @@ #include static uint8_t __code levels[] = { - 0, - 48, - 72, - 96, - 192, - 255 + 0x00, + 0x80, + 0x90, + 0xA8, + 0xC0, + 0xFF }; uint8_t kbled_get(void) { diff --git a/src/board/system76/lemp9/kbled.c b/src/board/system76/lemp9/kbled.c index cf46939..481255b 100644 --- a/src/board/system76/lemp9/kbled.c +++ b/src/board/system76/lemp9/kbled.c @@ -3,12 +3,12 @@ #include static uint8_t __code levels[] = { - 0, - 48, - 72, - 96, - 192, - 255 + 0x00, + 0x80, + 0x90, + 0xA8, + 0xC0, + 0xFF }; uint8_t kbled_get(void) {