-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spaces in FQBN are not supported #75
Comments
Ok I think it works like so: fqbn:
- "\"Heltec-esp32:Heltec ESP32 Series Dev-boards:esp32\"" |
Not sure if this is related to spaces or not but it might be: What to use as fqbn for https://resource.heltec.cn/download/package_heltec_esp32_index.json ? The doc says If I try fqbn:
- "\"Heltec-esp32:Heltec ESP32 Series Dev-boards:esp32\""
with:
fqbn: ${{ matrix.fqbn }}
platforms: |
- name: "Heltec-esp32:esp32"
version: "0.0.6"
source-url: https://resource.heltec.cn/download/package_heltec_esp32_index.json I get:
and with fqbn:
- "\"Heltec-esp32:Heltec ESP32 Series Dev-boards:esp32\""
with:
fqbn: ${{ matrix.fqbn }}
platforms: |
- name: "Heltec ESP32 Series Dev-boards:esp32"
version: "0.0.6"
source-url: https://resource.heltec.cn/download/package_heltec_esp32_index.json I seem to get a step further:
The command looks like it would need quotes but that seems to be a just display issue; otherwise the error message wouldn't contain the correct string. |
From what I'm seeing, e. g. So my issue doesn't seem to be related to spaces but rather like #73, that it's not very well documented - or am I just not smart enough? :) This seems to work now:
which makes sense, since it's the fully qualified board name ;) and the platform is:
I guess I was just too tired. |
Describe the problem
Using an FQBN with spaces, like
"Heltec-esp32:Heltec ESP32 Series Dev-boards:esp32"
fails withInvalid FQBN: not an FQBN: Heltec-esp32:Heltec
.Escaping like
"Heltec-esp32:Heltec\\ ESP32\\ Series\\ Dev-boards:esp32"
fails withInvalid FQBN: not an FQBN: Heltec-esp32:Heltec\
To reproduce
Expected behavior
It should not fail.
'arduino/compile-sketches' version
v1
Additional context
No response
Issue checklist
The text was updated successfully, but these errors were encountered: