diff options
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/ArchitectureSpecific.h | 6 | ||||
-rw-r--r-- | LUFA/Common/Architectures.h | 4 | ||||
-rw-r--r-- | LUFA/Common/Attributes.h | 4 | ||||
-rw-r--r-- | LUFA/Common/BoardTypes.h | 6 | ||||
-rw-r--r-- | LUFA/Common/Common.h | 34 | ||||
-rw-r--r-- | LUFA/Common/CompilerSpecific.h | 4 | ||||
-rw-r--r-- | LUFA/Common/Endianness.h | 9 |
7 files changed, 34 insertions, 33 deletions
diff --git a/LUFA/Common/ArchitectureSpecific.h b/LUFA/Common/ArchitectureSpecific.h index 1a125d6cb..48063e0d9 100644 --- a/LUFA/Common/ArchitectureSpecific.h +++ b/LUFA/Common/ArchitectureSpecific.h @@ -55,7 +55,7 @@ #if !defined(__INCLUDE_FROM_COMMON_H) #error Do not include this file directly. Include LUFA/Common/Common.h instead to gain this functionality. #endif - + /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) extern "C" { @@ -82,7 +82,7 @@ "M" (_SFR_IO_ADDR(MCUCR)) \ : "r0"); \ }MACROE - + /** Defines a volatile \c NOP statement which cannot be optimized out by the compiler, and thus can always * be set as a breakpoint in the resulting code. Useful for debugging purposes, where the optimizer * removes/reorders code to the point where break points cannot reliably be set. @@ -136,7 +136,7 @@ #define pgm_read_ptr(Address) (void*)pgm_read_word(Address) #endif #endif - + /* Disable C linkage for C++ Compilers: */ #if defined(__cplusplus) } diff --git a/LUFA/Common/Architectures.h b/LUFA/Common/Architectures.h index dad3ba7d7..c8b515549 100644 --- a/LUFA/Common/Architectures.h +++ b/LUFA/Common/Architectures.h @@ -66,10 +66,10 @@ /** Selects the Atmel 32-bit UC3 AVR (AT32UC3* chips) architecture. */ #define ARCH_UC3 1 - + /** Selects the Atmel XMEGA AVR (ATXMEGA*U chips) architecture. */ #define ARCH_XMEGA 2 - + #if !defined(__DOXYGEN__) #define ARCH_ ARCH_AVR8 diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h index 92948e10e..ccb2d43dc 100644 --- a/LUFA/Common/Attributes.h +++ b/LUFA/Common/Attributes.h @@ -133,14 +133,14 @@ * \param[in] Func Name of the function which the given function name should alias. */ #define ATTR_ALIAS(Func) __attribute__ ((alias( #Func ))) - + /** Marks a variable or struct element for packing into the smallest space available, omitting any * alignment bytes usually added between fields to optimize field accesses. */ #define ATTR_PACKED __attribute__ ((packed)) /** Indicates the minimum alignment in bytes for a variable or struct element. - * + * * \param[in] Bytes Minimum number of bytes the item should be aligned to. */ #define ATTR_ALIGNED(Bytes) __attribute__ ((aligned(Bytes))) diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h index 5ac70fe76..ea0d7073f 100644 --- a/LUFA/Common/BoardTypes.h +++ b/LUFA/Common/BoardTypes.h @@ -140,13 +140,13 @@ /** Selects the Kernel Concepts USBFOO specific board drivers, including the Button and LEDs drivers. */ #define BOARD_USBFOO 25 - + /** Selects the Sparkfun ATMEGA8U2 specific board drivers, including the driver for the board LEDs. */ #define BOARD_SPARKFUN8U2 26 /** Selects the Atmel EVK1101 specific board drivers, including the Button, Joystick and LED drivers. */ #define BOARD_EVK1101 27 - + /** Selects the Busware TUL specific board drivers, including the Button and LED drivers. */ #define BOARD_TUL 28 @@ -155,7 +155,7 @@ /** Selects the Atmel EVK1104 specific board drivers, including the Button and LED drivers. */ #define BOARD_EVK1104 30 - + /** Selects the Atmel XMEGA A3BU Xplained specific board drivers, including Dataflash, Button and LED drivers. */ #define BOARD_A3BU_XPLAINED 31 diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 4d08e783d..6f9936af8 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -42,7 +42,7 @@ * * @{ */ - + /** \defgroup Group_GlobalInt Global Interrupt Macros * \brief Convenience macros for the management of interrupts globally within the device. * @@ -54,13 +54,13 @@ /* Macros: */ #define __INCLUDE_FROM_COMMON_H - + /* Includes: */ #include <stdint.h> #include <stdbool.h> #include <string.h> #include <stddef.h> - + #if defined(USE_LUFA_CONFIG_HEADER) #include "LUFAConfig.h" #endif @@ -70,7 +70,7 @@ #include "ArchitectureSpecific.h" #include "CompilerSpecific.h" #include "Attributes.h" - + /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) extern "C" { @@ -90,9 +90,9 @@ #include <avr/eeprom.h> #include <avr/boot.h> #include <util/delay.h> - + typedef uint8_t uint_reg_t; - + #define ARCH_HAS_EEPROM_ADDRESS_SPACE #define ARCH_HAS_FLASH_ADDRESS_SPACE #define ARCH_HAS_MULTI_ADDRESS_SPACE @@ -110,7 +110,7 @@ // ================================================= typedef uint32_t uint_reg_t; - + #define ARCH_BIG_ENDIAN #include "Endianness.h" @@ -120,15 +120,15 @@ #include <avr/pgmspace.h> #include <avr/eeprom.h> #include <util/delay.h> - + typedef uint8_t uint_reg_t; - + #define ARCH_HAS_EEPROM_ADDRESS_SPACE #define ARCH_HAS_FLASH_ADDRESS_SPACE #define ARCH_HAS_MULTI_ADDRESS_SPACE #define ARCH_LITTLE_ENDIAN - #include "Endianness.h" + #include "Endianness.h" #else #error Unknown device architecture specified. #endif @@ -176,7 +176,7 @@ #if !defined(MIN) || defined(__DOXYGEN__) #define MIN(x, y) (((x) < (y)) ? (x) : (y)) #endif - + #if !defined(STRINGIFY) || defined(__DOXYGEN__) /** Converts the given input into a string, via the C Preprocessor. This macro puts literal quotation * marks around the input, converting the source into a string literal. @@ -256,7 +256,7 @@ while (Milliseconds--) { __builtin_mtsr(AVR32_COUNT, 0); - while (__builtin_mfsr(AVR32_COUNT) < (F_CPU / 1000)); + while (__builtin_mfsr(AVR32_COUNT) < (F_CPU / 1000)); } #elif (ARCH == ARCH_XMEGA) if (GCC_IS_COMPILE_CONST(Milliseconds)) @@ -267,7 +267,7 @@ { while (Milliseconds--) _delay_ms(1); - } + } #endif } @@ -316,12 +316,12 @@ else __builtin_csrf(AVR32_SR_GM_OFFSET); #elif (ARCH == ARCH_XMEGA) - SREG = GlobalIntState; + SREG = GlobalIntState; #endif - + GCC_MEMORY_BARRIER(); } - + /** Enables global interrupt handling for the device, allowing interrupts to be handled. * * \ingroup Group_GlobalInt @@ -340,7 +340,7 @@ #endif GCC_MEMORY_BARRIER(); - } + } /** Disabled global interrupt handling for the device, preventing interrupts from being handled. * diff --git a/LUFA/Common/CompilerSpecific.h b/LUFA/Common/CompilerSpecific.h index 96d37cd74..9186135b8 100644 --- a/LUFA/Common/CompilerSpecific.h +++ b/LUFA/Common/CompilerSpecific.h @@ -43,7 +43,7 @@ * * Compiler specific definitions to expose certain compiler features which may increase the level of code optimization * for a specific compiler, or correct certain issues that may be present such as memory barriers for use in conjunction - * with atomic variable access. + * with atomic variable access. * * Where possible, on alternative compilers, these macros will either have no effect, or default to returning a sane value * so that they can be used in existing code without the need for extra compiler checks in the user application code. @@ -77,7 +77,7 @@ * assembly output in an unexpected manner on sections of code that are ordering-specific. */ #define GCC_MEMORY_BARRIER() __asm__ __volatile__("" ::: "memory"); - + /** Evaluates to boolean true if the specified value can be determined at compile time to be a constant value * when compiling under GCC. * diff --git a/LUFA/Common/Endianness.h b/LUFA/Common/Endianness.h index 6b57ed61a..f0b5b19a1 100644 --- a/LUFA/Common/Endianness.h +++ b/LUFA/Common/Endianness.h @@ -65,7 +65,7 @@ #if !defined(__INCLUDE_FROM_COMMON_H) #error Do not include this file directly. Include LUFA/Common/Common.h instead to gain this functionality. #endif - + #if !(defined(ARCH_BIG_ENDIAN) || defined(ARCH_LITTLE_ENDIAN)) #error ARCH_BIG_ENDIAN or ARCH_LITTLE_ENDIAN not set for the specified architecture. #endif @@ -115,11 +115,11 @@ #define CPU_TO_LE16(x) SWAPENDIAN_16(x) #define CPU_TO_LE32(x) SWAPENDIAN_32(x) #define CPU_TO_BE16(x) (x) - #define CPU_TO_BE32(x) (x) + #define CPU_TO_BE32(x) (x) #elif !defined(le16_to_cpu) /** \name Run-time endianness conversion */ //@{ - + /** Performs a conversion between a Little Endian encoded 16-bit piece of data and the * Endianness of the currently selected CPU architecture. * @@ -398,7 +398,7 @@ { if (GCC_IS_COMPILE_CONST(Word)) return SWAPENDIAN_16(Word); - + uint8_t Temp; union @@ -486,3 +486,4 @@ #endif /** @} */ + |