Dependencies: mbed FATFileSystem
main.cpp
- Committer:
- rottenegg
- Date:
- 2019-05-06
- Revision:
- 14:165fff6d1854
- Parent:
- 12:ff8d26124c38
- Child:
- 21:f3b0ce18b44f
File content as of revision 14:165fff6d1854:
/* ELEC2645 Embedded Systems Project School of Electronic & Electrical Engineering University of Leeds Name:Saad Tayyab Username:el17st Student ID Number:201145512 Date: 18/04/2019 */ #include "mbed.h" #include "Game_Manager.h" Game_Manager GM(PTE3, PTE1, PTE2, PTE4, PTC9,PTC0,PTC7,PTD2,PTD1,PTC11, PTB9,PTB11,PTB10,PTC10,PTD0); int main() { if (!GM.boot_error()) { GM.main(); } }