Skip to content

Commit 0d73468

Browse files
committed
chore: auto formatting
1 parent c978c78 commit 0d73468

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

radio/src/targets/taranis/gx12/bsp_io.cpp

+8-9
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
*/
2121

2222
#include "bsp_io.h"
23-
#include "hal/switch_driver.h"
24-
#include "drivers/pca95xx.h"
25-
#include "stm32_i2c_driver.h"
26-
#include "timers_driver.h"
27-
#include "stm32_ws2812.h"
2823

2924
#include <FreeRTOS/include/FreeRTOS.h>
3025
#include <FreeRTOS/include/timers.h>
3126

32-
#include "myeeprom.h"
3327
#include "bitfield.h"
28+
#include "drivers/pca95xx.h"
29+
#include "hal/switch_driver.h"
30+
#include "myeeprom.h"
31+
#include "stm32_i2c_driver.h"
32+
#include "stm32_ws2812.h"
33+
#include "timers_driver.h"
3434

3535
struct bsp_io_expander {
3636
pca95xx_t exp;
@@ -179,10 +179,9 @@ static SwitchHwPos _get_switch_pos(uint8_t idx)
179179

180180
}
181181

182-
if(pos == SWITCH_HW_UP) {
182+
if (pos == SWITCH_HW_UP) {
183183
ws2812_set_color(def->pin_low - RGB_OFFSET, 0x0, 0x0, 0x0);
184-
}
185-
else {
184+
} else {
186185
ws2812_set_color(def->pin_low - RGB_OFFSET, 0xFF, 0xFF, 0xFF);
187186
}
188187
}

radio/src/targets/taranis/led_driver.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ uint8_t ledMapping[] = {0, 1, 2, 3, 4, 5, 6};
6565

6666
void fsLedRGB(uint8_t index, uint32_t color)
6767
{
68-
ws2812_set_color(ledMapping[index], GET_RED(color), \
69-
GET_GREEN(color),GET_BLUE(color));
68+
ws2812_set_color(ledMapping[index], GET_RED(color), GET_GREEN(color),
69+
GET_BLUE(color));
7070
}
7171

7272
uint8_t getRGBColorIndex(uint32_t color)

0 commit comments

Comments
 (0)