This code contains the game Starship designed for the STM32F429i-DISC1 board. It requires a keyboard to play.

Dependencies:   Starship LCD_DISCO_F429ZI USBHost mbed

Dependents:   Starship

Committer:
Oshyrath
Date:
Fri Nov 17 02:23:33 2017 +0000
Revision:
1:527a11035e0b
First Publish of the code.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Oshyrath 1:527a11035e0b 1 #ifndef __MAIN
Oshyrath 1:527a11035e0b 2 #define __MAIN
Oshyrath 1:527a11035e0b 3 extern "C"
Oshyrath 1:527a11035e0b 4 {
Oshyrath 1:527a11035e0b 5 #include "Game.h"
Oshyrath 1:527a11035e0b 6 }
Oshyrath 1:527a11035e0b 7 #include "mbed.h"
Oshyrath 1:527a11035e0b 8 #include "LCD_DISCO_F429ZI.h"
Oshyrath 1:527a11035e0b 9 #include "USBHostKeyboard.h"
Oshyrath 1:527a11035e0b 10 enum Stage{Start,Play,Pause,NextLevel,LostLife,GameOver};
Oshyrath 1:527a11035e0b 11 #endif