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 Apr 03 22:05:56 2019 +0000
Revision:
17:833f1b69e11d
Parent:
14:3035b3271395
update library

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;