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:
Thu May 31 03:38:14 2018 +0000
Revision:
14:3035b3271395
update

Who changed what in which revision?

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