mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d9863c6b3c
This adds the board specification of the Adafruit Metro M4 Express [1]. The significance of this board is that it is compatible with both classical SPI Arduino Shields using the ISP header for SPI (such as `shield_w5100`) and more recent shields using D11/D12/D13 as SPI (such as `shield_llcc68`). [1]: https://learn.adafruit.com/adafruit-metro-m4-express-featuring-atsamd51/overview
22 lines
634 B
Makefile
22 lines
634 B
Makefile
CPU = samd5x
|
|
CPU_MODEL = samd51j19a
|
|
|
|
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += highlevel_stdio
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_dac
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_rtc
|
|
FEATURES_PROVIDED += periph_rtt
|
|
FEATURES_PROVIDED += periph_spi
|
|
FEATURES_PROVIDED += periph_timer
|
|
FEATURES_PROVIDED += periph_uart
|
|
FEATURES_PROVIDED += periph_usbdev
|
|
|
|
# other board features
|
|
FEATURES_PROVIDED += arduino_analog
|
|
FEATURES_PROVIDED += arduino_pins
|
|
FEATURES_PROVIDED += arduino_shield_isp
|
|
FEATURES_PROVIDED += arduino_shield_uno
|
|
FEATURES_PROVIDED += arduino_spi
|