1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/nrf52840dongle: PWM config: fix formatting

This commit is contained in:
Hauke Petersen 2021-04-27 11:35:37 +02:00
parent 8a7f3ab6fa
commit 96e36995d3

View File

@ -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)
/** @} */