PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)
Dependents: YATTT sd_map_test cPong SnowDemo ... more
PokittoLib
Library for programming Pokitto hardware
How to Use
- Import this library to online compiler (see button "import" on the right hand side
- DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
- Change My_settings.h according to your project
- Start coding!
Diff: POKITTO_LIBS/ImageFormat/defines_linux_SIM.h
- Revision:
- 58:5f58a2846a20
- Parent:
- 23:f88837b8f914
diff -r 63853054a4d9 -r 5f58a2846a20 POKITTO_LIBS/ImageFormat/defines_linux_SIM.h --- a/POKITTO_LIBS/ImageFormat/defines_linux_SIM.h Tue Oct 02 20:38:50 2018 +0000 +++ b/POKITTO_LIBS/ImageFormat/defines_linux_SIM.h Sun Oct 07 10:06:28 2018 +0000 @@ -15,7 +15,7 @@ char* _strupr( char* s ) { char* p = s; - while (*p = toupper( *p )) p++; + while (*p){ *p = toupper( *p );p++;} return s; }