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.

30 lines
444 B

#include "system.h"
#include "pacer.h"
#include "tinygl.h"
#include "../fonts/font5x7_1.h"
#define PACER_RATE 500
#define MESSAGE_RATE 10
int main (void)
{
system_init();
/* TODO: Initialise tinygl. */
/* TODO: Set the message using tinygl_tlab3-ext(). */
pacer_init (PACER_RATE);
while(1)
{
pacer_wait();
/* TODO: Call the tinygl update function. */
}
return 0;
}