From 96e36995d3ec02db7d8a31b48ebd16f05b8b8fd7 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Tue, 27 Apr 2021 11:35:37 +0200 Subject: [PATCH] boards/nrf52840dongle: PWM config: fix formatting --- boards/nrf52840dongle/include/periph_conf.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/boards/nrf52840dongle/include/periph_conf.h b/boards/nrf52840dongle/include/periph_conf.h index 2289bafc79..4cebc638a5 100644 --- a/boards/nrf52840dongle/include/periph_conf.h +++ b/boards/nrf52840dongle/include/periph_conf.h @@ -67,7 +67,15 @@ static const uart_conf_t uart_config[] = { * @{ */ static const pwm_conf_t pwm_config[] = { - { NRF_PWM0, { GPIO_PIN(0, 6), GPIO_PIN(0, 8), GPIO_PIN(1, 9), GPIO_PIN(0, 12) } } + { + NRF_PWM0, + { + GPIO_PIN(0, 6), + GPIO_PIN(0, 8), + GPIO_PIN(1, 9), + GPIO_PIN(0, 12), + }, + }, }; #define PWM_NUMOF ARRAY_SIZE(pwm_config) /** @} */