commit 0753e96bc221c205d586e60d3d07651efe8dda56
parent 13e8ca37b6e826584c68615015214bdf95f2810c
Author: Lukas F. Hartmann <lukas@mntre.com>
Date: Tue, 24 Oct 2023 13:50:40 +0200
keyboard-fw: limit max keyboard brightness to 7 until blinking problem is fixed on some devices
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/reform2-keyboard-fw/backlight.c b/reform2-keyboard-fw/backlight.c
@@ -8,7 +8,7 @@
#include "backlight.h"
#define KBD_MIN_PWMVAL 0
-#define KBD_MAX_PWMVAL 8
+#define KBD_MAX_PWMVAL 7
#define KBD_PWM_STEP 1
int16_t pwmval = KBD_MAX_PWMVAL;