Skip to content
Snippets Groups Projects
Unverified Commit aee4771a authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

tests/periph_rtt: use a 5s delay between each hello

parent fd2ffd9e
No related branches found
No related tags found
No related merge requests found
Expected result Expected result
=============== ===============
When everything works as expected, you should see a hello message popping up every 10 seconds. When everything works as expected, you should see a hello message popping up every 5 seconds.
Background Background
========== ==========
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* @brief Test for low-level Real Time Timer drivers * @brief Test for low-level Real Time Timer drivers
* *
* This test will initialize the real-time timer and trigger an alarm printing * This test will initialize the real-time timer and trigger an alarm printing
* 'Hello' every 10 seconds * 'Hello' every 5 seconds
* *
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* *
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "periph_conf.h" #include "periph_conf.h"
#include "periph/rtt.h" #include "periph/rtt.h"
#define TICKS_TO_WAIT (10 * RTT_FREQUENCY) #define TICKS_TO_WAIT (5 * RTT_FREQUENCY)
static volatile uint32_t last; static volatile uint32_t last;
...@@ -47,7 +47,7 @@ void cb(void *arg) ...@@ -47,7 +47,7 @@ void cb(void *arg)
int main(void) int main(void)
{ {
puts("\nRIOT RTT low-level driver test"); puts("\nRIOT RTT low-level driver test");
puts("This test will display 'Hello' every 10 seconds\n"); puts("This test will display 'Hello' every 5 seconds\n");
puts("Initializing the RTT driver"); puts("Initializing the RTT driver");
rtt_init(); rtt_init();
...@@ -56,7 +56,7 @@ int main(void) ...@@ -56,7 +56,7 @@ int main(void)
printf("RTT now: %" PRIu32 "\n", now); printf("RTT now: %" PRIu32 "\n", now);
last = (now + TICKS_TO_WAIT) & RTT_MAX_VALUE; last = (now + TICKS_TO_WAIT) & RTT_MAX_VALUE;
printf("Setting initial alarm to now + 10 s (%" PRIu32 ")\n", last); printf("Setting initial alarm to now + 5 s (%" PRIu32 ")\n", last);
rtt_set_alarm(last, cb, 0); rtt_set_alarm(last, cb, 0);
puts("Done setting up the RTT, wait for many Hellos"); puts("Done setting up the RTT, wait for many Hellos");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment