Music Player for ARCH-PRO

Dependencies:   GT20L16J1Y_font TinyJpgDec mbed

SeeedStudio Arch Pro + aitendo TFT-LCD w/Touch panel => .wav File Player
LPC1768 + aitendo TFT-LCD w/Touch panel => .wav File Player
http://goji2100.com/
/media/uploads/Goji/017s.png

Committer:
Goji
Date:
Mon Sep 08 16:07:05 2014 +0000
Revision:
0:6fa19738f62e
Music Player for ARCH-PRO

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Goji 0:6fa19738f62e 1 // -- Board Select -----------------------------------
Goji 0:6fa19738f62e 2 #define _ARCH_PRO
Goji 0:6fa19738f62e 3 // ---------------------------------------------------
Goji 0:6fa19738f62e 4
Goji 0:6fa19738f62e 5 // -- TFT LCD / Touch Panel --------------------------
Goji 0:6fa19738f62e 6 #define aitendo26
Goji 0:6fa19738f62e 7 //#define mcufriend24
Goji 0:6fa19738f62e 8 // ---------------------------------------------------
Goji 0:6fa19738f62e 9
Goji 0:6fa19738f62e 10 typedef struct TFT_INFO TFT_INFO;
Goji 0:6fa19738f62e 11 struct TFT_INFO {
Goji 0:6fa19738f62e 12 int xMIN;
Goji 0:6fa19738f62e 13 int xMAX;
Goji 0:6fa19738f62e 14 int yMIN;
Goji 0:6fa19738f62e 15 int yMAX;
Goji 0:6fa19738f62e 16 int TPC_xNon;
Goji 0:6fa19738f62e 17 int TPC_xMin;
Goji 0:6fa19738f62e 18 int TPC_xMax;
Goji 0:6fa19738f62e 19 int TPC_yNon;
Goji 0:6fa19738f62e 20 int TPC_yMin;
Goji 0:6fa19738f62e 21 int TPC_yMax;
Goji 0:6fa19738f62e 22 int TFT_devid;
Goji 0:6fa19738f62e 23 };
Goji 0:6fa19738f62e 24