emailler/test/clk_timer.c
Christian Groessler 1b19f15b6a test program for C implementation of timer_seconds
Makefile changes are missing.
2018-02-05 18:10:07 +01:00

35 lines
577 B
C

/* test for timer_seconds function */
#include <stdio.h>
#include <conio.h>
extern void timer_init(void);
extern unsigned int timer_seconds(void);
static int done;
int main(void)
{
unsigned char sec, sec2, c;
unsigned int x;
timer_init();
printf("Hit <SPACE> to exit...\n");
sec = timer_seconds();
printf("%02x\n", sec);
while (!done) {
x = timer_seconds();
sec2 = x & 255;
if (sec != sec2) {
sec = sec2;
printf("%02x\n", sec);
}
if (kbhit()) {
c = cgetc();
if (c == ' ')
done = 1;
}
}
return 0;
}