Change over board hardware drivers to use the custom uintN_t and intN_t native word size types.
This commit is contained in:
parent
d2ed97e34b
commit
2590452104
26 changed files with 83 additions and 98 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue