X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/aae20139b90521cf1d1b17fdcb3ff9d42ecdf937..19ecd04f37f68c0674f1194aa8d8a4fc94d6168b:/LUFA/Common/Common.h?ds=sidebyside diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 4052480dd..f64de8ff8 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -29,6 +29,7 @@ */ /** \file + * \brief Common library convenience macros and functions. * * This file contains macros which are common to all library elements, and which may be useful in user code. It * also includes other common headers, such as Atomic.h, FunctionAttributes.h and BoardTypes.h. @@ -56,17 +57,8 @@ #define __COMMON_H__ /* Includes: */ - #if defined(__AVR32__) - #include - #include - - #include "Atomic.h" - - #define PROGMEM - #else - #include - #endif - + #include + #include "FunctionAttributes.h" #include "BoardTypes.h" @@ -188,14 +180,6 @@ } } - /* Type Defines: */ - #if defined(__AVR32__) - typedef uint32_t uintN_t; - typedef int32_t intN_t; - #else - typedef uint8_t uintN_t; - typedef int8_t intN_t; - #endif #endif /** @} */