diff --git a/.github/verify.sh b/.github/verify.sh index 5b026f5..ad015e5 100644 --- a/.github/verify.sh +++ b/.github/verify.sh @@ -20,13 +20,11 @@ perform_checks() { cd .. } -complex_wifi_arg="" - # Generate templates cargo generate \ --path $template_path --name=test-complex --silent --vcs=none \ -d advanced=true -d ci=false -d devcontainer=false -d wokwi=false \ - -d alloc=true $complex_wifi_arg -d mcu=$1 + -d alloc=true -d wifi=true -d mcu=$1 cargo generate \ --path $template_path --name=test-simple --silent --vcs=none \ diff --git a/Cargo.toml b/Cargo.toml index 4264da7..76dd098 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ log = { version = "0.4.20" } esp-alloc = { version = "0.3.0" } {% endif -%} {% if wifi -%} -esp-wifi = { version = "0.2.0", features = ["{{ mcu }}", "{{ wifi_feature }}"] } +esp-wifi = { version = "0.2.0", features = ["{{ mcu }}", "{{ esp_wifi_feature }}"] } smoltcp = { version = "0.10.0", default-features=false, features = ["proto-igmp", "proto-ipv4", "socket-tcp", "socket-icmp", "socket-udp", "medium-ethernet", "proto-dhcpv4", "socket-raw", "socket-dhcpv4"] } embedded-svc = { version = "0.26.1", default-features = false, features = [] } embedded-io = "0.6.1"