We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
At least on the nRF51822 and nRF51422, only TIMER0 can do 8/16/24 and 32-bit operation, while TIMER1 and 2 are restricted to 8/16-bit operation.
Because all of them share the same code, you can still do things like this:
p.device.TIMER1.bitmode.write(|w| w.bitmode()._32bit());
...which will put TIMER1 in either 8 or 16-bit mode, instead of the intended 32-bit mode.
The text was updated successfully, but these errors were encountered:
@jonas-schievink Thanks for noticing. @droogmic maybe something to consider for your Timer rework...
Sorry, something went wrong.
Did the repo move make the Pull Request disappear? I don't see it in the commit history or PR list.
EDIT: Nevermind nrf-rs/nrf51-hal#12
No branches or pull requests
At least on the nRF51822 and nRF51422, only TIMER0 can do 8/16/24 and 32-bit operation, while TIMER1 and 2 are restricted to 8/16-bit operation.
Because all of them share the same code, you can still do things like this:
...which will put TIMER1 in either 8 or 16-bit mode, instead of the intended 32-bit mode.
The text was updated successfully, but these errors were encountered: