1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00
2025-07-22 14:39:33 +02:00

2.0 KiB

@defgroup boards_arduino-due Arduino Due @ingroup boards @brief Support for the Arduino Due board

\section arduino_due Arduino-Due

Table of Contents

  1. Overview
  2. Hardware
    1. MCU
    2. Board Configuration
    3. Board Pinout
  3. Flashing the Device

Overview

The Arduino Due is a microcontroller board based on the Atmel SAM3X8E ARM Cortex-M3 CPU. It is the first Arduino board based on a 32-bit ARM core microcontroller.

\image html "https://store.arduino.cc/cdn/shop/files/A000062_00.front_1000x750.jpg" "Arduino Due board" width=750px

Hardware

MCU

The board features a SAM3X8E MCU (ARM Cortex-M3) running at up to 84MHz. It embeds 96 KiB of SRAM and 512 KiB of flash memory. The board reference manual is available here and the MCU datasheet is available here.

Board configuration

The Arduino Due provides the following features:

  • 54 I/Os (of which 12 PWM outputs)
  • 12 analog inputs
  • 4 UARTs
  • 1 USB OTG
  • 2 DAC outputs
  • 2 TWI
  • 1 power jack
  • 1 SPI header
  • 1 JTAG header
  • 2 CAN Buses
  • A reset button
  • An erase button

Board pinout

\image html "https://content.arduino.cc/assets/Pinout-Due_latest.png" "Arduino Due pinout"

The board schematics are available here.

Flashing the device

Flashing RIOT on the Arduino Due is quite straight forward as it relies on the preinstalled arduino bootloader. Connect your board using the programming port to your host computer and type:

make BOARD=arduino-due flash