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

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jan 27, 2024
1 parent 8c22c5c commit 22ab9ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[build]
# Uncomment the relevant target for your chip here (ESP32, ESP32-S2, ESP32-S3 or ESP32-C3)
target = "xtensa-esp32-espidf"
#target = "xtensa-esp32-espidf"
#target = "xtensa-esp32s2-espidf"
#target = "xtensa-esp32s3-espidf"
#target = "riscv32imc-esp-espidf"
target = "riscv32imc-esp-espidf"
#target = "riscv32imac-esp-espidf"

[target.xtensa-esp32-espidf]
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ include!(env!("EMBUILD_GENERATED_SYMBOLS_FILE"));
const ULP: &[u8] = include_bytes!(env!("EMBUILD_GENERATED_BIN_FILE"));

thread_local! {
#[allow(clippy::thread_local_initializer_can_be_made_const)]
static TLS: RefCell<u32> = const { RefCell::new(13) };
}

Expand Down

0 comments on commit 22ab9ec

Please sign in to comment.