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
test -f Cargo.toml || die "unable to find 'Cargo.toml'. You will need to map the container path /home/project to the path of your Rust project. You can do this using: docker run -ti -v $PWD:/home/project:z rust-esp"
for i in esp-idf .cargo main; do
test -d "$i" || die "'$i' is missing. Use 'create-project' to set up the build."
done
for i in Makefile .cargo/config main/esp_app_main.c; do
test -f "$i" || die "'$i' is missing. Use 'create-project' to set up the build."
done
test -f sdkconfig || die "'sdkconfig' is missing. You can create one running 'make menuconfig'"
make -j app
if test -d esp32-sys; then
if ! test -f esp32-sys/src/bindings.rs; then
echo "esp32-sys crate is present, but bindings.rs is missing, running bindgen-project"