1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/hardware/sam/system/libsam/cmsis/sam3s8/include/sam3s8.h
2011-09-06 21:05:41 +02:00

23 lines
446 B
C

/* $asf_license$ */
#ifndef _SAM3S8_
#define _SAM3S8_
#if defined __SAM3SD8A__
#include "sam3sd8a.h"
#elif defined __SAM3SD8B__
#include "sam3sd8b.h"
#elif defined __SAM3SD8C__
#include "sam3sd8c.h"
#elif defined __SAM3S8A__
#include "sam3s8a.h"
#elif defined __SAM3S8B__
#include "sam3s8b.h"
#elif defined __SAM3S8C__
#include "sam3s8c.h"
#else
#error Library does not support the specified device.
#endif
#endif /* _SAM3S8_ */