Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.

This commit is contained in:
Dean Camera 2010-02-22 11:44:34 +00:00
parent d2851b3351
commit aae20139b9
16 changed files with 509 additions and 18 deletions

View file

@ -86,12 +86,16 @@
#define __SCHEDULER_H__
/* Includes: */
#include <avr/io.h>
#if defined(__AVR32__)
#include <avr32/io.h>
#include <stdbool.h>
#else
#include <avr/io.h>
#include <util/atomic.h>
#include <stdbool.h>
#endif
#include "../Common/Common.h"
#include "../Common/Common.h"
/* Enable C linkage for C++ Compilers: */
#if defined(__cplusplus)