diff options
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/Common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 4052480dd..04480d514 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -190,10 +190,16 @@ /* Type Defines: */
#if defined(__AVR32__)
+ /** Type define for an unsigned native word-sized chunk of data. */
typedef uint32_t uintN_t;
+
+ /** Type define for a signed native word-sized chunk of data. */
typedef int32_t intN_t;
#else
+ /** Type define for an unsigned native word-sized chunk of data. */
typedef uint8_t uintN_t;
+
+ /** Type define for a signed native word-sized chunk of data. */
typedef int8_t intN_t;
#endif
#endif
|