Skip to content

Commit 5704200

Browse files
committed
Fixed raise value url for supported boards
1 parent 81ce513 commit 5704200

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Reduino/toolchain/pio.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,7 @@ def validate_platform_board(platform: str, board: str) -> None:
379379
if board not in BOARD_TO_PLATFORM:
380380
raise ValueError(
381381
f"Unsupported PlatformIO board '{board}'. Supported boards for the AVR platforms "
382-
"are listed at https://docs.platformio.org/en/latest/boards/atmelavr.html "
383-
"and https://docs.platformio.org/en/latest/boards/atmelmegaavr.html."
382+
"are listed at https://docs.platformio.org/en/latest/boards/index.html "
384383
)
385384

386385
required_platform = BOARD_TO_PLATFORM[board]

0 commit comments

Comments
 (0)