Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of PS3_BlueUSB_user_ver_circlewar by
FatFileSystem/integer.h@19:71f64ff1b86f, 2016-03-30 (annotated)
- Committer:
- baba2357
- Date:
- Wed Mar 30 05:09:54 2016 +0000
- Revision:
- 19:71f64ff1b86f
- Parent:
- 0:736c76a75def
A?
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| hirokimineshita | 0:736c76a75def | 1 | /*-------------------------------------------*/ |
| hirokimineshita | 0:736c76a75def | 2 | /* Integer type definitions for FatFs module */ |
| hirokimineshita | 0:736c76a75def | 3 | /*-------------------------------------------*/ |
| hirokimineshita | 0:736c76a75def | 4 | |
| hirokimineshita | 0:736c76a75def | 5 | #ifndef _INTEGER |
| hirokimineshita | 0:736c76a75def | 6 | |
| hirokimineshita | 0:736c76a75def | 7 | /* These types must be 16-bit, 32-bit or larger integer */ |
| hirokimineshita | 0:736c76a75def | 8 | typedef int INT; |
| hirokimineshita | 0:736c76a75def | 9 | typedef unsigned int UINT; |
| hirokimineshita | 0:736c76a75def | 10 | |
| hirokimineshita | 0:736c76a75def | 11 | /* These types must be 8-bit integer */ |
| hirokimineshita | 0:736c76a75def | 12 | typedef signed char CHAR; |
| hirokimineshita | 0:736c76a75def | 13 | typedef unsigned char UCHAR; |
| hirokimineshita | 0:736c76a75def | 14 | typedef unsigned char BYTE; |
| hirokimineshita | 0:736c76a75def | 15 | |
| hirokimineshita | 0:736c76a75def | 16 | /* These types must be 16-bit integer */ |
| hirokimineshita | 0:736c76a75def | 17 | typedef short SHORT; |
| hirokimineshita | 0:736c76a75def | 18 | typedef unsigned short USHORT; |
| hirokimineshita | 0:736c76a75def | 19 | typedef unsigned short WORD; |
| hirokimineshita | 0:736c76a75def | 20 | |
| hirokimineshita | 0:736c76a75def | 21 | /* These types must be 32-bit integer */ |
| hirokimineshita | 0:736c76a75def | 22 | typedef long LONG; |
| hirokimineshita | 0:736c76a75def | 23 | typedef unsigned long ULONG; |
| hirokimineshita | 0:736c76a75def | 24 | typedef unsigned long DWORD; |
| hirokimineshita | 0:736c76a75def | 25 | |
| hirokimineshita | 0:736c76a75def | 26 | /* Boolean type */ |
| hirokimineshita | 0:736c76a75def | 27 | typedef enum { FALSE = 0, TRUE } BOOL; |
| hirokimineshita | 0:736c76a75def | 28 | |
| hirokimineshita | 0:736c76a75def | 29 | #define _INTEGER |
| hirokimineshita | 0:736c76a75def | 30 | #endif |
