Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c10b399

Browse files
committedApr 14, 2020
Added Arduino Nano to fake-registry to test some examples
1 parent f8f6e9d commit c10b399

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎arduino/cores/packagemanager/registry.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ func LoadBoardRegistry(file *paths.Path) (*BoardsRegistry, error) {
8787
FQBN: cores.MustParseFQBN("arduino:avr:uno"),
8888
Alias: "uno",
8989
})
90+
fake.addBoard(&RegisteredBoard{
91+
Name: "Arduino Nano",
92+
FQBN: cores.MustParseFQBN("arduino:avr:nano"),
93+
Alias: "nano",
94+
})
9095
fake.addBoard(&RegisteredBoard{
9196
Name: "Arduino Zero",
9297
FQBN: cores.MustParseFQBN("arduino:samd:arduino_zero_edbg"),

0 commit comments

Comments
 (0)
Please sign in to comment.