tidbyt / hdk

A community supported firmware for the Tidbyt hardware 🤓
https://tidbyt.com
Apache License 2.0
49 stars 12 forks source link

Install script trying to compile my SSID as a path?? #8

Open thonkinator opened 5 months ago

thonkinator commented 5 months ago

I ran this in my terminal, replaced from the README (not my actual details of course, my SSID is my address):

TIDBYT_WIFI_SSID='47 Octocat Lane #12' \
TIDBYT_WIFI_PASSWORD='opensourcerocks' \
TIDBYT_REMOTE_URL='http://10.66.2.59:8080/api/v1/preview.webp' \
pio run --environment tidbyt --target upload

But then the build failed with this error:

Auto-detected: /dev/cu.Bluetooth-Incoming-Port
Compiling .pio/build/tidbyt/src/display.o
xtensa-esp32-elf-g++: error: Octocat: No such file or directory
xtensa-esp32-elf-g++: error: Lane: No such file or directory
xtensa-esp32-elf-g++: fatal error: no input files
compilation terminated.
Compiling .pio/build/tidbyt/src/flash.o
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
Compiling .pio/build/tidbyt/src/gfx.o
Compiling .pio/build/tidbyt/src/main.o
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
Compiling .pio/build/tidbyt/src/remote.o
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
Compiling .pio/build/tidbyt/src/wifi.o
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
Compiling .pio/build/tidbyt/app_trace/app_trace.o
*** [.pio/build/tidbyt/src/display.o] Error 1
*** [.pio/build/tidbyt/src/flash.o] Error 1
*** [.pio/build/tidbyt/src/gfx.o] Error 1
*** [.pio/build/tidbyt/src/main.o] Error 1
*** [.pio/build/tidbyt/src/remote.o] Error 1
*** [.pio/build/tidbyt/src/wifi.o] Error 1
Compiling .pio/build/tidbyt/app_trace/app_trace_util.o
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
*** [.pio/build/tidbyt/app_trace/app_trace.o] Error 1
xtensa-esp32-elf-gcc: error: Octocat: No such file or directory
xtensa-esp32-elf-gcc: error: Lane: No such file or directory
xtensa-esp32-elf-gcc: fatal error: no input files
compilation terminated.
*** [.pio/build/tidbyt/app_trace/app_trace_util.o] Error 1
================================================ [FAILED] Took 3.53 seconds ================================================

Why is it trying to compile my SSID as a path?

thonkinator commented 5 months ago

Adding backslashes to the SSID in front of the spaces gets it to compile, but then I get A fatal error occurred: Failed to connect to ESP32: No serial data received.