mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7913811a0f
By default the periph_timer tests wants to init all timers with 1MHz, which is not suitable for all timers, e.g. the atmega timers cannot run at that speed to make the test work they need to be set to 250kHz. |
||
---|---|---|
.. | ||
tests | ||
main.c | ||
Makefile | ||
README.md |
Periph Timer Test
About
This application will test all configured peripheral timers of the target platform. For each timer, it will set each channel with an incrementing timeout: CH0 is set to 5ms, CH1 to 10ms, CH2 to 15ms and so on.
Expected Result
The output should show that every channel fired after an evenly distributed amount of time, i.e. the diff values should be equal (with some jitter...).
Note
This test does however NOT show whether the timeouts and diffs were correct in relation to the expected real-time; use e.g. tests/xtimer_msg for this.