Happy CI :)

This commit is contained in:
Dion Dokter 2025-08-29 15:16:31 +02:00 committed by Dario Nieuwenhuis
parent 99209accb5
commit a853bbe2a4
2 changed files with 2 additions and 4 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added new metadata API for tasks.
- Main task automatically gets a name of `main` when the `metadata-name` feature is enabled.
- Upgraded rtos-trace
- Added optional "earliest deadline first" EDF scheduling
## 0.9.1 - 2025-08-31

View File

@ -39,12 +39,9 @@ use core::sync::atomic::AtomicPtr;
use core::sync::atomic::Ordering;
use core::task::{Context, Poll, Waker};
use embassy_executor_timer_queue::TimerQueueItem;
#[cfg(feature = "arch-avr")]
use portable_atomic::AtomicPtr;
#[cfg(feature = "metadata-deadline")]
pub use deadline::Deadline;
use embassy_executor_timer_queue::TimerQueueItem;
#[cfg(feature = "arch-avr")]
use portable_atomic::AtomicPtr;