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

  1. Import this library to online compiler (see button "import" on the right hand side
  2. DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
  3. Change My_settings.h according to your project
  4. Start coding!
Revision:
45:bbfc6002118c
Parent:
23:f88837b8f914
--- a/POKITTO_LIBS/ImageFormat/BmpImage.cpp	Tue May 01 18:58:31 2018 +0000
+++ b/POKITTO_LIBS/ImageFormat/BmpImage.cpp	Mon May 21 18:03:03 2018 +0000
@@ -50,6 +50,11 @@
 #include "FileIO.h"
 #endif
 
+
+#define max(a,b) ((a)>(b)?(a):(b))
+#define min(a,b) ((a)<(b)?(a):(b))
+
+
 #if POK_ENABLE_SD > 0