2011-09-06 21:05:41 +02:00
|
|
|
/* $asf_license$ */
|
2011-09-05 22:59:49 +02:00
|
|
|
|
|
|
|
#ifndef _SAM3N_
|
|
|
|
#define _SAM3N_
|
|
|
|
|
2011-09-06 21:05:41 +02:00
|
|
|
#if defined __SAM3N1A__
|
|
|
|
#include "sam3n1a.h"
|
|
|
|
#elif defined __SAM3N1B__
|
|
|
|
#include "sam3n1b.h"
|
|
|
|
#elif defined __SAM3N1C__
|
|
|
|
#include "sam3n1c.h"
|
|
|
|
#elif defined __SAM3N2A__
|
|
|
|
#include "sam3n2a.h"
|
|
|
|
#elif defined __SAM3N2B__
|
|
|
|
#include "sam3n2b.h"
|
|
|
|
#elif defined __SAM3N2C__
|
|
|
|
#include "sam3n2c.h"
|
|
|
|
#elif defined __SAM3N4A__
|
|
|
|
#include "sam3n4a.h"
|
|
|
|
#elif defined __SAM3N4B__
|
|
|
|
#include "sam3n4b.h"
|
|
|
|
#elif defined __SAM3N4C__
|
|
|
|
#include "sam3n4c.h"
|
2011-09-05 22:59:49 +02:00
|
|
|
#else
|
|
|
|
#error Library does not support the specified device.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SAM3N_ */
|