Skip to content

Commit

Permalink
ESP32-S3 example: update to esp-hal 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
sourcebox committed Jan 15, 2025
1 parent 514d4eb commit 43494f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/example-esp32s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ version = "0.1.0"
edition = "2021"

[dependencies]
esp-hal = { version = "0.22", features = ["esp32s3"] }
esp-backtrace = { version = "0.14.2", features = [
esp-hal = { version = "0.23", features = ["esp32s3"] }
esp-backtrace = { version = "0.15.0", features = [
"esp32s3",
"panic-handler",
"println",
] }
esp-println = { version = "0.12.0", features = ["esp32s3", "log"] }
esp-println = { version = "0.13.0", features = ["esp32s3", "log"] }
usb-device = { version = "0.3.2", features = ["control-buffer-256"] }
usbd-midi = { path = "../../" }
midi-convert = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/example-esp32s3/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SYSEX_BUFFER_SIZE: usize = 64;
fn main() -> ! {
// Some basic setup to run the MCU at maximum clock speed.
let mut config = Config::default();
config.cpu_clock = clock::CpuClock::Clock240MHz;
config.cpu_clock = clock::CpuClock::_240MHz;
let peripherals = esp_hal::init(config);

let usb_bus_allocator = otg_fs::UsbBus::new(
Expand Down

0 comments on commit 43494f2

Please sign in to comment.