diff --git a/esp-hal-embassy/src/time_driver.rs b/esp-hal-embassy/src/time_driver.rs index f2f0d63fc5..d86f2f2d83 100644 --- a/esp-hal-embassy/src/time_driver.rs +++ b/esp-hal-embassy/src/time_driver.rs @@ -309,7 +309,7 @@ fn not_enough_timers() -> ! { // This is wrapped in a separate function because rustfmt does not like // extremely long strings. Also, if log is used, this avoids storing the string // twice. - panic!("There are not enough timers to allocate a new alarm. Call esp_hal_embassy::init() with the correct number of timers, or consider either using the single-queue feature or disabling integrated-timers."); + panic!("There are not enough timers to allocate a new alarm. Call esp_hal_embassy::init() with the correct number of timers, or consider either using the `single-queue` or the `generic-queue` feature."); } pub(crate) fn set_up_alarm(priority: Priority, _ctx: *mut ()) -> AlarmHandle {