2

I have an Arduino based board using ATmega168PB, but so far only Atmel's provided toolchain supports this microcontroller. I can download the toolchain from Atmel's website, but I am not sure how to make the Arduino environment use it.

Greenonline
  • 3,152
  • 7
  • 36
  • 48

1 Answers1

3

In the directory for the new core create a new platform.txt and give the entry for compiler.path the location of the bin/ directory containing the Atmel toolchain.

compiler.path=/path/to/bin/
Ignacio Vazquez-Abrams
  • 17,733
  • 1
  • 28
  • 32