Loading...
Searching...
No Matches
Atmega256RFR2 Xplained Pro

Support for the Atmega256RFR2 Xplained Pro board. More...

Detailed Description

Support for the Atmega256RFR2 Xplained Pro board.

General information

The Atmega256RFR2 Xplained Pro is an evaluation kit by Microchip for their ATmega256RFR2 microcontroller.

Flash the board

You can flash the board using the on-board EDBG programmer via JTAG. Avrdude has support for programming an AVR via EDBG with its xplainedpro programmer.

First, make sure the default fuse settings are correct. In particular, the low byte fuse are enabling the use of the on-board 16MHz external oscillator.

WARNING: setting the fuses incorrectly can brick your board!

avrdude -p m256rfr2 -c xplainedpro -U efuse:w:0xFF:m
avrdude -p m256rfr2 -c xplainedpro -U hfuse:w:0x1F:m
avrdude -p m256rfr2 -c xplainedpro -U lfuse:w:0xFF:m

To flash the board, just call make from an application directory with the flash target:

make BOARD=atmega256rfr2-xpro -C examples/hello-world flash

Accessing STDIO via UART

STDIO can be accessed through the USB connector. The on-board UART-USB adapter is not affected by flashing. It shows up as /dev/ttyACM0 on Linux. It will be used automatically with make term:

make BOARD=atmega256rfr2-xpro -C examples/hello-world term

Files

file  board.h
 Board specific definitions for the Atmega256RFR2 Xplained Pro.
 
file  gpio_params.h
 Configuration of SAUL mapped GPIO pins.
 
file  periph_conf.h
 Peripheral MCU configuration for the Atmega256RFR2 Xplained Pro.