1

I'm using Arduino Makefile to compile sketches for Uno and Mega boards. I'm now trying to compile a sketch for an Arduino Uno Pro, which is an Uno with a replaced chip to give it features more like a Mega.

When writing a makefile to compile for this board, which BOARD_TAG should I use? I don't see this board listed in the official Arduino or Arduino Makefile docs.

dda
1,5951 gold badge12 silver badges17 bronze badges
asked Feb 13, 2017 at 1:35

1 Answer 1

1

After you edit your boards.txt file to incorporate the Arduino Uno Pro section from near the end of that Arduino Uno Pro webpage at hobbytronics.co.uk that you referenced, the board tag list produced by make show_boards will include the following line:

uno_pro Arduino Uno*Pro

indicating the tag should be uno_pro.

answered Feb 13, 2017 at 2:07
2
  • I also had to copy over a pins_arduino.h file, but yeah, that was it. I thought it required something more the makefile. Commented Feb 13, 2017 at 5:46
  • @Cerin, glad you got it to work ... I've been impressed by the documentation quality and the ease of use of this particular Arduino Makefile system. BTW, if copying the pins_arduino.h file fixed the other problem you posted, you probably could either delete that question or answer it. Commented Feb 13, 2017 at 6:47

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.