From 651961d655e9196502d1344f135c49672681aec8 Mon Sep 17 00:00:00 2001 From: schneider <schneider@muc.ccc.de> Date: Thu, 15 Aug 2019 11:38:37 +0000 Subject: [PATCH] chore(buttons.c): Fix indentation. --- epicardium/modules/buttons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epicardium/modules/buttons.c b/epicardium/modules/buttons.c index 965df3199..1b2b57623 100644 --- a/epicardium/modules/buttons.c +++ b/epicardium/modules/buttons.c @@ -14,7 +14,7 @@ static void epic_buttons_update(uint8_t mask) button_states[3] = MAX77650_getDebounceStatusnEN0(); } if (portexpander_detected() && (mask % 8)) { - /* Not using PB_Get() here as that performs one I2C transcation per button */ + /* Not using PB_Get() here as that performs one I2C transcation per button */ uint8_t button_status = portexpander_get(); for (int i = 0; i < 3; i++) { button_states[i] = (button_status >> ButtonPin[i]) & 1; -- GitLab