Change over board hardware drivers to use the custom uintN_t and intN_t native word...
[pub/USBasp.git] / LUFA / Common / Common.h
index 4052480..04480d5 100644 (file)
 \r
                /* Type Defines: */\r
                        #if defined(__AVR32__)\r
+                               /** Type define for an unsigned native word-sized chunk of data. */\r
                                typedef uint32_t uintN_t;\r
+\r
+                               /** Type define for a signed native word-sized chunk of data. */\r
                                typedef int32_t intN_t;\r
                        #else\r
+                               /** Type define for an unsigned native word-sized chunk of data. */\r
                                typedef uint8_t uintN_t;\r
+\r
+                               /** Type define for a signed native word-sized chunk of data. */\r
                                typedef int8_t intN_t;\r
                        #endif\r
 #endif\r