Satellite Observers Workbench. NOT yet complete, just published for forum posters to \"cherry pick\" pieces of code as requiered as an example.

Dependencies:   mbed

Committer:
AjK
Date:
Mon Oct 11 10:34:55 2010 +0000
Revision:
0:0a841b89d614
Totally Alpha quality as this project isn\t completed. Just publishing it as it answers many questions asked in the forums

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AjK 0:0a841b89d614 1 /*-------------------------------------------*/
AjK 0:0a841b89d614 2 /* Integer type definitions for FatFs module */
AjK 0:0a841b89d614 3 /*-------------------------------------------*/
AjK 0:0a841b89d614 4
AjK 0:0a841b89d614 5 #ifndef _INTEGER
AjK 0:0a841b89d614 6 #define _INTEGER
AjK 0:0a841b89d614 7
AjK 0:0a841b89d614 8 #ifdef _WIN32 /* FatFs development platform */
AjK 0:0a841b89d614 9
AjK 0:0a841b89d614 10 #include <windows.h>
AjK 0:0a841b89d614 11 #include <tchar.h>
AjK 0:0a841b89d614 12
AjK 0:0a841b89d614 13 #else /* Embedded platform */
AjK 0:0a841b89d614 14
AjK 0:0a841b89d614 15 /* These types must be 16-bit, 32-bit or larger integer */
AjK 0:0a841b89d614 16 typedef int INT;
AjK 0:0a841b89d614 17 typedef unsigned int UINT;
AjK 0:0a841b89d614 18
AjK 0:0a841b89d614 19 /* These types must be 8-bit integer */
AjK 0:0a841b89d614 20 typedef char CHAR;
AjK 0:0a841b89d614 21 typedef unsigned char UCHAR;
AjK 0:0a841b89d614 22 typedef unsigned char BYTE;
AjK 0:0a841b89d614 23
AjK 0:0a841b89d614 24 /* These types must be 16-bit integer */
AjK 0:0a841b89d614 25 typedef short SHORT;
AjK 0:0a841b89d614 26 typedef unsigned short USHORT;
AjK 0:0a841b89d614 27 typedef unsigned short WORD;
AjK 0:0a841b89d614 28 typedef unsigned short WCHAR;
AjK 0:0a841b89d614 29
AjK 0:0a841b89d614 30 /* These types must be 32-bit integer */
AjK 0:0a841b89d614 31 typedef long LONG;
AjK 0:0a841b89d614 32 typedef unsigned long ULONG;
AjK 0:0a841b89d614 33 typedef unsigned long DWORD;
AjK 0:0a841b89d614 34
AjK 0:0a841b89d614 35 #endif
AjK 0:0a841b89d614 36
AjK 0:0a841b89d614 37 #endif