Skip to content

Commit d69421a

Browse files
authored
Merge pull request #133 from brentru/fix-avr-fqbn
Fix AVR platforms not compiling
2 parents dc0519b + 88008c8 commit d69421a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_platform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def manually_install_esp32_bsp(repo_info):
221221
def install_platform(fqbn, full_platform_name=None):
222222
print("Installing", fqbn, end=" ")
223223
if fqbn == "adafruit:avr": # we have a platform dep
224-
install_platform("arduino:avr")
224+
install_platform("arduino:avr", full_platform_name)
225225
if full_platform_name[2] is not None:
226226
manually_install_esp32_bsp(full_platform_name[2]) # build esp32 bsp from desired source and branch
227227
if os.system("arduino-cli core install "+fqbn+" --additional-urls "+BSP_URLS+" > /dev/null") != 0:

0 commit comments

Comments
 (0)