Skip to content

Commit

Permalink
fixup! fixup! drivers/ws281x: Add timer and gpio_ll based driver
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinWeiss committed Dec 18, 2023
1 parent e1e079e commit 7ceabdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ws281x/timer_gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ int ws281x_init(ws281x_t *dev, const ws281x_params_t *params)
}

err = timer_init(WS281X_TIMER_DEV, WS281X_TIMER_FREQ, NULL, NULL);
DEBUG("Initialized timer to %lu Hz: %d\n", WS281X_TIMER_FREQ, err);
DEBUG("Initialized timer to %d Hz: %d\n", WS281X_TIMER_FREQ, err);
if (err != 0) {
return -EIO;
}
Expand Down

0 comments on commit 7ceabdb

Please sign in to comment.