blob: a5e02d3619ced194278e0216b7b33b600df495da [file] [log] [blame]
Christina Quast2d18f172014-11-22 19:48:48 +01001#ifndef _BOARD_
2#define _BOARD_
3
4#include "chip.h"
5#include "syscalls.h" /** RedHat Newlib minimal stub */
6
7/** Name of the board */
8#define BOARD_NAME "SAM3S-EK"
9/** Board definition */
10#define sam3sek
11/** Family definition (already defined) */
12#define sam3s
13/** Core definition */
14#define cortexm3
15
16
17#define BOARD_MAINOSC 12000000
18#define BOARD_MCK 48000000
19
20//#define LED_STATUS PIO_PA8
21#define LED_STATUS PIO_PA17
22#define LED_STATUS2 PIO_PA18
23
24#endif