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
Great! Now the Board FQBN (Fully Qualified Board Name) and the Board Name look good, we are ready to compile and upload the sketch
145
+
If the board is not detected for any reason, you can list all the supported boards
146
+
with `arduino-cli board listall` and also search for a specific board:
147
+
148
+
$ arduino-cli board listall mkr
149
+
Board Name FQBN
150
+
Arduino MKR FOX 1200 arduino:samd:mkrfox1200
151
+
Arduino MKR GSM 1400 arduino:samd:mkrgsm1400
152
+
Arduino MKR WAN 1300 arduino:samd:mkrwan1300
153
+
Arduino MKR WiFi 1010 arduino:samd:mkrwifi1010
154
+
Arduino MKRZERO arduino:samd:mkrzero
155
+
Arduino/Genuino MKR1000 arduino:samd:mkr1000
156
+
157
+
Great! Now we have the Board FQBN (Fully Qualified Board Name) `arduino:samd:mkr1000`
158
+
and the Board Name look good, we are ready to compile and upload the sketch
146
159
147
160
### Step 5. Compile the sketch
148
161
To compile the sketch we have to run the `compile` command with the proper FQBN we just got in the previous command.
@@ -294,25 +307,6 @@ Because:
294
307
295
308
#### How can I find the core/FQBN for a board?
296
309
297
-
You must first find the core, for example if you are interested in the Arduino Zero you can search the term `zero`:
298
-
299
-
```
300
-
$ arduino-cli core search zero
301
-
Searching for platforms matching 'zero'
302
-
303
-
ID Version Name
304
-
arduino:samd 1.6.19 Arduino SAMD Boards (32-bits ARM Cortex-M0+)
305
-
```
306
-
307
-
once the core is determined you should install it with `arduino-cli core install arduino:samd` and, once installed, you can connect the board and detect it with `arduino-cli board list`.
308
-
309
-
If the board is not detected for any reason, you can list all the supported boards with `arduino-cli board listall` and also search for a specific board, in our example `arduino-cli board listall zero`.
0 commit comments