From 480c55a52673f555ab774233fa482b700278cdd4 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sun, 14 Jan 2024 22:00:16 +0100 Subject: MAX44006 driver: PWRON bit is 0x04, not 0x02 --- include/driver/max44006.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/driver') diff --git a/include/driver/max44006.h b/include/driver/max44006.h index bd00458..4aac90f 100644 --- a/include/driver/max44006.h +++ b/include/driver/max44006.h @@ -23,7 +23,7 @@ class MAX44006 { enum InterruptStatus { AMBINTS = 0b00000001, - PWRON = 0b00000010, + PWRON = 0b00000100, SHDN = 0b00001000, RESET = 0b00010000, }; -- cgit v1.2.3