Skip to content

Commit

Permalink
Update toolchain version and fix esp-hal revision (#28)
Browse files Browse the repository at this point in the history
* Update toolchain version to `1.63.0.2`

* Update `editor.formatOnSaveMode` property

* Update esp-hal rev
  • Loading branch information
SergioGasquez authored Sep 6, 2022
1 parent 6638362 commit 4cf5e91
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV LANG=C.UTF-8
# Arguments
ARG CONTAINER_USER=esp
ARG CONTAINER_GROUP=esp
ARG TOOLCHAIN_VERSION=1.62.1.0
ARG TOOLCHAIN_VERSION=1.63.0.2
ARG ESP_BOARD=esp32
ARG INSTALL_RUST_TOOLCHAIN=install-rust-toolchain.sh

Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "{{ crate_name }}",
// Select between image and build propieties to pull or build the image.
// "image": "docker.io/espressif/idf-rust:{{ mcu }}_1.62.1.0",
// "image": "docker.io/espressif/idf-rust:{{ mcu }}_1.63.0.2",
"build": {
"dockerfile": "Dockerfile",
"args": {
Expand All @@ -13,7 +13,7 @@
"settings": {
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"editor.formatOnSaveMode": "file",
"editor.formatOnType": true,
"lldb.executable": "/usr/bin/lldb",
"files.watcherExclude": {
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV LANG=C.UTF-8
# ARGS
ARG CONTAINER_USER=gitpod
ARG CONTAINER_GROUP=gitpod
ARG TOOLCHAIN_VERSION=1.62.1.0
ARG TOOLCHAIN_VERSION=1.63.0.2
ARG ESP_BOARD={{ mcu }}
ARG INSTALL_RUST_TOOLCHAIN=install-rust-toolchain.sh

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
{{ mcu }}-hal = { package = "{{ mcu }}-hal", git = "https://github.com/esp-rs/esp-hal.git", rev = "6e037b0" }
{{ mcu }}-hal = { package = "{{ mcu }}-hal", git = "https://github.com/esp-rs/esp-hal.git", rev = "e9f22ac" }
esp-backtrace = { version = "0.1.0", features = ["{{ mcu }}", "panic-handler", "print-uart"] }
{% if mcu == "esp32c3" -%}
riscv-rt = { version = "0.9", optional = true }
Expand Down

0 comments on commit 4cf5e91

Please sign in to comment.