Add board driver support for the Atmel XMEGA-B1 Xplained board.

Fix Dataflash driver for the A3BU-Xplained board.

Minor documentation improvements.
This commit is contained in:
Dean Camera 2012-02-06 17:05:33 +00:00
parent fdab3aef86
commit 4d131de85b
17 changed files with 306 additions and 23 deletions

View file

@ -117,7 +117,7 @@
static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
static inline uint8_t LEDs_GetLEDs(void)
{
return (PORTR_OUT & LEDS_ALL_LEDS);
return (~PORTR_OUT & LEDS_ALL_LEDS);
}
#endif