We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to compile firmwares for different boards in the same CMakeLists.txt. Here is an excerpt of it:
register_hardware_platform(/home/gael/sketchbook/hardware/arbotix) set(ARDUINO_DEFAULT_BOARD arbotix) generate_arduino_firmware(commander SKETCH commander BOARD atmega328 )
The compilation (make commander) fails with the following error:
make commander
/home/gael/sketchbook/hardware/arbotix/variants/standard/pins_arduino.h:105:14: error: ‘DDRA’ undeclared here
What disturbs me, is that the included pins_arduino.h is taken from the arbotix hardware, not the arduino one.
pins_arduino.h
arbotix
arduino
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to compile firmwares for different boards in the same CMakeLists.txt. Here is an excerpt of it:
register_hardware_platform(/home/gael/sketchbook/hardware/arbotix) set(ARDUINO_DEFAULT_BOARD arbotix) generate_arduino_firmware(commander SKETCH commander BOARD atmega328 )
The compilation (
make commander
) fails with the following error:What disturbs me, is that the included
pins_arduino.h
is taken from thearbotix
hardware, not thearduino
one.The text was updated successfully, but these errors were encountered: