Change over board hardware drivers to use the custom uintN_t and intN_t native word size types.

This commit is contained in:
Dean Camera 2010-02-22 12:58:40 +00:00
parent d2ed97e34b
commit 2590452104
26 changed files with 83 additions and 98 deletions

View file

@ -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