Demo of low res colour vga video for stm32f3 discovery board

Dependencies:   STM32F3-Discovery-minimal

Fork of Space_Invaders_Demo by Martin Johnson

Committer:
MartinJohnson
Date:
Wed May 30 03:23:47 2018 +0000
Revision:
10:8ffcefda667a
Tidy up and add a menu

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MartinJohnson 10:8ffcefda667a 1 typedef struct {
MartinJohnson 10:8ffcefda667a 2 char *name;
MartinJohnson 10:8ffcefda667a 3 void (*prog)();
MartinJohnson 10:8ffcefda667a 4 } menuentry_t;
MartinJohnson 10:8ffcefda667a 5
MartinJohnson 10:8ffcefda667a 6 typedef struct {
MartinJohnson 10:8ffcefda667a 7 char *title;
MartinJohnson 10:8ffcefda667a 8 int no;
MartinJohnson 10:8ffcefda667a 9 menuentry_t *entries;
MartinJohnson 10:8ffcefda667a 10 } menu_t;