Skip to content
Snippets Groups Projects
Commit b0f6217a authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

...

parent cd7ee540
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,6 @@ void loop(void)
counter.stop();
kout << "nop: " << counter.value << "/" << counter.overflow << endl;
counter.start();
arch.delay_ms(1);
counter.stop();
kout << "1ms: " << counter.value << "/" << counter.overflow << endl;
counter.start();
arch.delay_us(10);
counter.stop();
......@@ -24,6 +19,11 @@ void loop(void)
counter.stop();
kout << "20us: " << counter.value << "/" << counter.overflow << endl;
counter.start();
arch.delay_ms(1);
counter.stop();
kout << "1ms: " << counter.value << "/" << counter.overflow << endl;
counter.start();
arch.delay_ms(2);
counter.stop();
......
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