This commit is contained in:
Christina Quast
2014-11-28 10:27:32 +01:00
parent 2d18f171c2
commit b0a0570e11
21 changed files with 13149 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#ifndef _BOARD_
#define _BOARD_
#include "chip.h"
#include "syscalls.h" /** RedHat Newlib minimal stub */
/** Name of the board */
#define BOARD_NAME "SAM3S-EK"
/** Board definition */
#define sam3sek
/** Family definition (already defined) */
#define sam3s
/** Core definition */
#define cortexm3
#define BOARD_MAINOSC 12000000
#define BOARD_MCK 48000000
//#define LED_STATUS PIO_PA8
#define LED_STATUS PIO_PA17
#endif