Example Menus LCD TFT

Dependencies:   MenusLCD mbed TouchADS7843 LCDTFT

Committer:
Suky
Date:
Tue Mar 15 23:24:06 2011 +0000
Revision:
0:9f4d6a7777ec

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Suky 0:9f4d6a7777ec 1 #ifndef __GENERICTYPEDESFS_H__
Suky 0:9f4d6a7777ec 2 #define __GENERICTYPEDESFS_H__
Suky 0:9f4d6a7777ec 3 typedef signed int SINT;
Suky 0:9f4d6a7777ec 4 typedef signed char SINT8;
Suky 0:9f4d6a7777ec 5 typedef signed short SINT16;
Suky 0:9f4d6a7777ec 6 typedef signed int SINT32;
Suky 0:9f4d6a7777ec 7
Suky 0:9f4d6a7777ec 8
Suky 0:9f4d6a7777ec 9 typedef unsigned int UINT;
Suky 0:9f4d6a7777ec 10 typedef unsigned char UINT8;
Suky 0:9f4d6a7777ec 11 typedef unsigned short UINT16;
Suky 0:9f4d6a7777ec 12 typedef unsigned int UINT32;
Suky 0:9f4d6a7777ec 13 #endif