commit dc6d2c546b938b106f4f8ba708989193d9a6c90d Author: Artur Paszkiewicz Date: Fri Nov 29 11:56:41 2019 +0100 smp: fix the activity indicator states The values for SOF and EOF were interchanged, which caused an incorrect default value to be used (100b instead of 101b). Signed-off-by: Artur Paszkiewicz diff --git a/src/smp.c b/src/smp.c index b893d76..2c089f8 100644 --- a/src/smp.c +++ b/src/smp.c @@ -61,8 +61,8 @@ #define LED_ON 1 #define LED_4HZ 2 #define LED_I4HZ 3 -#define LED_SOF 4 -#define LED_EOF 5 +#define LED_EOF 4 +#define LED_SOF 5 #define LED_2HZ 6 #define LED_I2HZ 7