\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