You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
385 B
25 lines
385 B
#include "system.h"
|
|
#include "button.h"
|
|
#include "pacer.h"
|
|
#include "tinygl.h"
|
|
#include "../fonts/font3x5_1.h"
|
|
|
|
|
|
int main (void)
|
|
{
|
|
system_init();
|
|
|
|
/* TODO: Initialise the button driver, tinygl, and the pacer. */
|
|
|
|
|
|
while(1)
|
|
{
|
|
pacer_wait();
|
|
|
|
/* TODO: Implement the functionality of the tasks in the
|
|
stopwatch1 program. */
|
|
|
|
}
|
|
return 0;
|
|
}
|