From 24f68fa7e77bda4fa528c10bcbab6157e0e07de8 Mon Sep 17 00:00:00 2001 From: ilgiznurgaliev Date: Thu, 2 Apr 2020 14:57:28 +0300 Subject: [PATCH 1/2] Update FAQ.md --- docs/FAQ.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/FAQ.md b/docs/FAQ.md index 46ff7e8b405..c38ecf26f24 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -13,5 +13,11 @@ When you run `arduino-cli board list`, your board doesn't show up. Possible caus For a deeper understanding of how FQBN works, you should understand the [Arduino platform specification][0]. +## How to set multiple board options? + +Additional board options have to be separated by commas (instead of colon): + +`$ arduino-cli compile -b "LGT8fx Boards:avr:328:clock=16MHz,variant=modelP" test-sketch` + [0]: platform-specification.md From d8656d72329fdece38421343758485f2b661381f Mon Sep 17 00:00:00 2001 From: ilgiznurgaliev Date: Fri, 3 Apr 2020 12:29:29 +0300 Subject: [PATCH 2/2] Update docs/FAQ.md Co-Authored-By: per1234 --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index c38ecf26f24..a5189e2c369 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -17,7 +17,7 @@ the [Arduino platform specification][0]. Additional board options have to be separated by commas (instead of colon): -`$ arduino-cli compile -b "LGT8fx Boards:avr:328:clock=16MHz,variant=modelP" test-sketch` +`$ arduino-cli compile --fqbn "esp8266:esp8266:generic:xtal=160,baud=57600" TestSketch` [0]: platform-specification.md