Commit b0f6217a authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

...

parent cd7ee540
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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();