SD

Committer:
mikekelly99
Date:
Tue Nov 17 17:03:36 2020 +0000
Revision:
0:6db20bbdc767
Wow, never committed the code once so first and final commit, code produces the lat and long values as well as speed.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mikekelly99 0:6db20bbdc767 1 /*-------------------------------------------*/
mikekelly99 0:6db20bbdc767 2 /* Integer type definitions for FatFs module */
mikekelly99 0:6db20bbdc767 3 /*-------------------------------------------*/
mikekelly99 0:6db20bbdc767 4
mikekelly99 0:6db20bbdc767 5 #ifndef _FF_INTEGER
mikekelly99 0:6db20bbdc767 6 #define _FF_INTEGER
mikekelly99 0:6db20bbdc767 7
mikekelly99 0:6db20bbdc767 8 #ifdef _WIN32 /* Development platform */
mikekelly99 0:6db20bbdc767 9
mikekelly99 0:6db20bbdc767 10 #include <windows.h>
mikekelly99 0:6db20bbdc767 11 #include <tchar.h>
mikekelly99 0:6db20bbdc767 12
mikekelly99 0:6db20bbdc767 13 #else /* Embedded platform */
mikekelly99 0:6db20bbdc767 14
mikekelly99 0:6db20bbdc767 15 /* This type MUST be 8-bit */
mikekelly99 0:6db20bbdc767 16 typedef unsigned char BYTE;
mikekelly99 0:6db20bbdc767 17
mikekelly99 0:6db20bbdc767 18 /* These types MUST be 16-bit */
mikekelly99 0:6db20bbdc767 19 typedef short SHORT;
mikekelly99 0:6db20bbdc767 20 typedef unsigned short WORD;
mikekelly99 0:6db20bbdc767 21 typedef unsigned short WCHAR;
mikekelly99 0:6db20bbdc767 22
mikekelly99 0:6db20bbdc767 23 /* These types MUST be 16-bit or 32-bit */
mikekelly99 0:6db20bbdc767 24 typedef int INT;
mikekelly99 0:6db20bbdc767 25 typedef unsigned int UINT;
mikekelly99 0:6db20bbdc767 26
mikekelly99 0:6db20bbdc767 27 /* These types MUST be 32-bit */
mikekelly99 0:6db20bbdc767 28 typedef long LONG;
mikekelly99 0:6db20bbdc767 29 typedef unsigned long DWORD;
mikekelly99 0:6db20bbdc767 30
mikekelly99 0:6db20bbdc767 31 #endif
mikekelly99 0:6db20bbdc767 32
mikekelly99 0:6db20bbdc767 33 #endif