Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boards/nrf9160dk: use all available CC timer channels #19771

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions boards/nrf9160dk/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ static const spi_conf_t spi_config[] = {
static const timer_conf_t timer_config[] = {
{
.dev = NRF_TIMER0_S,
.channels = 3,
/* using last channel for timer_read(), so only 5 of 6 channels available */
.channels = 5,
dylad marked this conversation as resolved.
Show resolved Hide resolved
.bitmode = TIMER_BITMODE_BITMODE_32Bit,
.irqn = TIMER0_IRQn
},
{
.dev = NRF_TIMER1_S,
.channels = 3,
/* using last channel for timer_read(), so only 5 of 6 channels available */
.channels = 5,
dylad marked this conversation as resolved.
Show resolved Hide resolved
.bitmode = TIMER_BITMODE_BITMODE_08Bit,
.irqn = TIMER1_IRQn
},
Expand Down