Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
build: Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Feb 14, 2024
1 parent 26f1671 commit 905de42
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ debug = true

[dependencies]
{{ mcu }}-hal = "{{ hal_version }}"
esp-backtrace = { version = "0.10.0", features = ["{{ mcu }}", "panic-handler", "exception-handler", "print-uart"] }
esp-backtrace = { version = "0.11.0", features = ["{{ mcu }}", "panic-handler", "exception-handler", "println"] }
{% if logging -%}
esp-println = { version = "0.8.0", features = ["{{ mcu }}", "log"] }
esp-println = { version = "0.9.0", features = ["{{ mcu }}", "log"] }
log = { version = "0.4.20" }
{% else -%}
esp-println = { version = "0.8.0", features = ["{{ mcu }}"] }
esp-println = { version = "0.9.0", features = ["{{ mcu }}"] }
{% endif -%}
{% if alloc -%}
esp-alloc = { version = "0.3.0" }
{% endif -%}
{% if wifi -%}
esp-wifi = { version = "0.2.0", features = ["{{ mcu }}", "wifi"] }
esp-wifi = { version = "0.3.0", features = ["{{ mcu }}", "wifi"] }
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"
heapless = { version = "0.7.17", default-features = false }
heapless = { version = "0.8.0", default-features = false }
{% endif -%}

{% if mcu == "esp32" or mcu == "esp32c2" %}
Expand Down
14 changes: 7 additions & 7 deletions pre-script.rhai
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
let metadata = #{
// Xtensa devices:
esp32: #{
hal_version: "0.17.0",
hal_version: "0.18.0",
wokwi_board: "board-esp32-devkit-c-v4",
},
esp32s2: #{
hal_version: "0.14.0",
hal_version: "0.15.0",
wokwi_board: "board-esp32-s2-devkitm-1",
},
esp32s3: #{
hal_version: "0.14.0",
hal_version: "0.15.0",
wokwi_board: "board-esp32-s3-devkitc-1",
},

// RISC-V devices:
esp32c2: #{
extensions: "imc",
hal_version: "0.12.0",
hal_version: "0.13.0",
wokwi_board: "",
},
esp32c3: #{
extensions: "imc",
hal_version: "0.14.0",
hal_version: "0.15.0",
wokwi_board: "board-esp32-c3-devkitm-1",
},
esp32c6: #{
extensions: "imac",
hal_version: "0.7.0",
hal_version: "0.8.0",
wokwi_board: "board-esp32-c6-devkitc-1",
},
esp32h2: #{
extensions: "imac",
hal_version: "0.5.0",
hal_version: "0.6.0",
wokwi_board: "board-esp32-h2-devkitm-1",
},
};
Expand Down

0 comments on commit 905de42

Please sign in to comment.