From 41574c410661c7ce9231cf9c29602f307f393276 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Sun, 21 Nov 2021 01:47:35 -0700 Subject: Add .clang-format and run clang-format. --- include/drv/ws2812b.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/drv') diff --git a/include/drv/ws2812b.h b/include/drv/ws2812b.h index 9cf35e4..b14b31a 100644 --- a/include/drv/ws2812b.h +++ b/include/drv/ws2812b.h @@ -3,6 +3,7 @@ #define INCLUDE_DRV_WS2812B_H_ #include + #include "driver/spi_master.h" typedef struct { @@ -12,7 +13,7 @@ typedef struct { } ws2812b_rgb_t; typedef struct { - uint8_t* buf_; /* Buffer to hold the value to spi. */ + uint8_t* buf_; /* Buffer to hold the value to spi. */ uint32_t n_rgb; /* Number of rgb values which exist. */ ws2812b_rgb_t rgb[]; /* Colors to write. */ -- cgit