mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-09-18 01:42:26 -07:00
Initial import of support files for all Digistump boards - Digispark, Pro, DigiX - including libraries, examples, tools, and other support files for the Arduino IDE
This commit is contained in:
77
hardware/digistump/sam/system/libsam/chip.h
Normal file
77
hardware/digistump/sam/system/libsam/chip.h
Normal file
@@ -0,0 +1,77 @@
|
||||
/*
|
||||
Copyright (c) 2011 Arduino. All right reserved.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef _LIB_SAM_
|
||||
#define _LIB_SAM_
|
||||
|
||||
/*
|
||||
* Core and peripherals registers definitions
|
||||
*/
|
||||
#include "sam.h"
|
||||
|
||||
/* Define attribute */
|
||||
#if defined ( __GNUC__ ) /* GCC CS3 */
|
||||
#define WEAK __attribute__ ((weak))
|
||||
#elif defined ( __ICCARM__ ) /* IAR Ewarm 5.41+ */
|
||||
#define WEAK __weak
|
||||
#endif
|
||||
|
||||
/* Define NO_INIT attribute */
|
||||
#if defined ( __GNUC__ )
|
||||
#define NO_INIT
|
||||
#elif defined ( __ICCARM__ )
|
||||
#define NO_INIT __no_init
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Peripherals
|
||||
*/
|
||||
#include "include/adc.h"
|
||||
#if (SAM3XA_SERIES) || (SAM3N_SERIES) || (SAM3S_SERIES)
|
||||
#include "include/dacc.h"
|
||||
#endif // (SAM3XA_SERIES) || (SAM3N_SERIES) || (SAM3S_SERIES)
|
||||
|
||||
#include "include/interrupt_sam_nvic.h"
|
||||
#include "include/efc.h"
|
||||
#include "include/gpbr.h"
|
||||
#include "include/pio.h"
|
||||
#include "include/pmc.h"
|
||||
#include "include/pwmc.h"
|
||||
#include "include/rstc.h"
|
||||
#include "include/rtc.h"
|
||||
#include "include/rtt.h"
|
||||
#include "include/spi.h"
|
||||
#include "include/ssc.h"
|
||||
#include "include/tc.h"
|
||||
#include "include/twi.h"
|
||||
#include "include/usart.h"
|
||||
#include "include/wdt.h"
|
||||
|
||||
#include "include/timetick.h"
|
||||
#include "include/USB_device.h"
|
||||
#include "include/USB_host.h"
|
||||
|
||||
#if (SAM3XA_SERIES)
|
||||
#include "include/can.h"
|
||||
#include "include/emac.h"
|
||||
#include "include/trng.h"
|
||||
#include "include/uotghs_device.h"
|
||||
#include "include/uotghs_host.h"
|
||||
#endif /* (SAM3XA_SERIES) */
|
||||
|
||||
#endif /* _LIB_SAM_ */
|
Reference in New Issue
Block a user