mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:32:45 +01:00
drivers/periph_timer: fix timer_query_freqs() doc
The code examples in the doc contained an obvious bug that this commit fixes.
This commit is contained in:
parent
c636f34eac
commit
04f1597792
@ -281,7 +281,7 @@ uword_t timer_query_channel_numof(tim_t dev);
|
|||||||
*
|
*
|
||||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.c}
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.c}
|
||||||
* uint32_t freq:
|
* uint32_t freq:
|
||||||
* for (uword_t i; (freq = timer_query_freqs(dev, i)); i++) {
|
* for (uword_t i = 0; (freq = timer_query_freqs(dev, i)); i++) {
|
||||||
* work_with_frequency(freq);
|
* work_with_frequency(freq);
|
||||||
* }
|
* }
|
||||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@ -289,7 +289,7 @@ uword_t timer_query_channel_numof(tim_t dev);
|
|||||||
* Or alternatively:
|
* Or alternatively:
|
||||||
*
|
*
|
||||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.c}
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.c}
|
||||||
* for (uword_t i; i < timer_query_freqs_numof(dev); i++) {
|
* for (uword_t i = 0; i < timer_query_freqs_numof(dev); i++) {
|
||||||
* work_with_frequency(timer_query_freqs(dev, i));
|
* work_with_frequency(timer_query_freqs(dev, i));
|
||||||
* }
|
* }
|
||||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
Loading…
Reference in New Issue
Block a user