Skip to content

Adding Arduino pro to makefile #76

New issue

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

Merged
merged 1 commit into from
Apr 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Basic2/IoTBasic/Makefile
Original file line number Diff line number Diff line change
@@ -41,10 +41,10 @@ endif
# Fully qualified board name
# For a full list of FQBNs see: arduino-cli board listall
# To add a board add the FQBN to the list and the sort name to the SBN list below.
FQBN := esp32:esp32:d1_mini32 esp8266:esp8266:d1_mini esp8266:esp8266:nodemcuv2
FQBN := esp32:esp32:d1_mini32 esp8266:esp8266:d1_mini esp8266:esp8266:nodemcuv2 arduino:avr:pro

# board short names (=last part of the FQBN)
SBN := d1_mini32 d1_mini nodemcuv2
SBN := d1_mini32 d1_mini nodemcuv2 pro

# Rule to extract the FQBN based on the short name
get_full_name = $(filter %$(1),$(FQBN))