Skip to content

Commit

Permalink
Ci-hangs-fix-ci (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
1-rafael-1 authored Jul 17, 2024
1 parent 9cda5c6 commit 2c5eaaf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ smart-leds = "0.4.0"
ssd1306-async = { git = "https://github.com/kalkyl/ssd1306-async" }
ws2812-async = "0.2.0"
heapless = "0.8"
usbd-hid = "0.7.0"
usbd-hid = "0.8.2"
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
serde-json-core = "0.5.1"
embedded-hal = "1.0"
Expand All @@ -89,7 +89,7 @@ log = "0.4"
pio-proc = "0.2"
pio = "0.2.1"
rand = { version = "0.8.5", default-features = false }
embedded-sdmmc = "0.7.0"
embedded-sdmmc = "0.8.0"
reqwless = { version = "0.12.0", features = ["defmt"] }
tinybmp = "0.6.0"
assign-resources = { git = "https://github.com/adamgreig/assign-resources", rev = "94ad10e2729afdf0fd5a77cd12e68409a982f58a" }
Expand Down
12 changes: 6 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ async fn main(spawner: Spawner) {
// configure, which tasks to spawn. For a production build we need all tasks, for troubleshooting we can disable some
// the tasks are all spawned in main.rs, so we can disable them here
// clutter in the output aside, the binary size is conveniently reduced by disabling tasks
// let task_config = TaskConfig::new();
let mut task_config = TaskConfig::new();
task_config.spawn_connect_and_update_rtc = false;
let task_config = TaskConfig::new();
// let mut task_config = TaskConfig::new();
// task_config.spawn_connect_and_update_rtc = false;
// task_config.spawn_btn_green = false;
// task_config.spawn_btn_blue = false;
// task_config.spawn_btn_yellow = false;
task_config.spawn_neopixel = false;
task_config.spawn_display = false;
task_config.spawn_dfplayer = false;
// task_config.spawn_neopixel = false;
// task_config.spawn_display = false;
// task_config.spawn_dfplayer = false;

// RTC
// Initialize the RTC in a static cell, we will need it in multiple places
Expand Down

0 comments on commit 2c5eaaf

Please sign in to comment.