You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uploadCommand.Flags().StringVarP(&port, "port", "p", "", "Upload port, e.g.: COM10 or /dev/ttyACM0")
56
-
uploadCommand.Flags().StringVarP(&importDir, "input-dir", "", "", "Direcory containing binaries to upload.")
56
+
uploadCommand.Flags().StringVarP(&importDir, "input-dir", "", "", "Directory containing binaries to upload.")
57
57
uploadCommand.Flags().BoolVarP(&verify, "verify", "t", false, "Verify uploaded binary after the upload.")
58
58
uploadCommand.Flags().BoolVarP(&verbose, "verbose", "v", false, "Optional, turns on verbose mode.")
59
59
uploadCommand.Flags().StringVarP(&programmer, "programmer", "P", "", "Optional, use the specified programmer to upload or 'list' to list supported programmers.")
Copy file name to clipboardExpand all lines: docs/package_index_json-specification.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,7 +193,7 @@ Finally, let's see how `PLATFORMS` are made.
193
193
Each PLATFORM describes a core for a specific architecture. The fields needed are:
194
194
195
195
*`name`: the extended name of the platform that is displayed on the Boards Manager GUI
196
-
*`architecture`: is the architecture of the plaftorm (avr, sam, etc...). It must match the architecture of the core as explained in the [Arduino platform specification](platform-specification.md#hardware-folders-structure)
196
+
*`architecture`: is the architecture of the platform (avr, sam, etc...). It must match the architecture of the core as explained in the [Arduino platform specification](platform-specification.md#hardware-folders-structure)
197
197
*`version`: the version of the platform.
198
198
*`category`: this field is reserved, a 3rd party core must set it to `Contributed`
199
199
*`help`/`online`: is a URL that is displayed on the Arduino IDE's Boards Manager as an "Online Help" link
Copy file name to clipboardExpand all lines: docs/platform-specification.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -475,12 +475,12 @@ The port selected via the IDE or [`arduino-cli upload`](https://arduino.github.i
475
475
476
476
### Upload using an external programmer
477
477
478
-
**TODO...**
478
+
**TODO...**<br>
479
479
The platform.txt associated with the selected programmer will be used.
480
480
481
481
### Burn Bootloader
482
482
483
-
**TODO...**
483
+
**TODO...**<br>
484
484
The platform.txt associated with the selected board will be used.
485
485
486
486
## Custom board options
@@ -555,7 +555,7 @@ There is no limit to the number of custom menus that can be defined.
555
555
556
556
## Referencing another core, variant or tool
557
557
558
-
Inside the boards.txt we can define a board that uses a core provided by another vendor/mantainer using the syntax **VENDOR_ID:CORE_ID**. For example, if we want to define a board that uses the "arduino" core from the "arduino" vendor we should write:
558
+
Inside the boards.txt we can define a board that uses a core provided by another vendor/maintainer using the syntax **VENDOR_ID:CORE_ID**. For example, if we want to define a board that uses the "arduino" core from the "arduino" vendor we should write:
0 commit comments