X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/f3ec62b5c689d9c66b07a57df76ca83881ce3fe3..cad5e9ffca70f4f5d3b486049088fd77dfa8f0ca:/LUFA/Common/Common.h diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 114f566b2..4efa27ecb 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -67,6 +67,7 @@ #include #include #include + #include #include "Architectures.h" #include "Attributes.h" @@ -81,6 +82,16 @@ #include #include #include + + typedef uint8_t uintN_t; + typedef int8_t intN_t; + #elif (ARCH == ARCH_UC3B) + #include + + typedef uint32_t uintN_t; + typedef int32_t intN_t; + + #warning The UC3B architecture support is currently experimental and incomplete! #endif /* Public Interface - May be used in end-application: */