mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
Add initialize
This commit is contained in:
parent
ff02ee1a22
commit
8ebe059ecb
@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## Unreleased
|
||||
|
||||
- Only set integrated-timers callbacks once per executor.
|
||||
- `raw::Executor` now has an `fn initialize` that must be called once before starting to poll it.
|
||||
|
||||
## 0.6.3 - 2024-11-12
|
||||
|
||||
|
@ -53,6 +53,10 @@ mod thread {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
init(self.inner.spawner());
|
||||
|
||||
loop {
|
||||
|
@ -98,6 +98,9 @@ mod thread {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
init(self.inner.spawner());
|
||||
|
||||
loop {
|
||||
@ -207,6 +210,9 @@ mod interrupt {
|
||||
}
|
||||
|
||||
let executor = unsafe { (&*self.executor.get()).assume_init_ref() };
|
||||
unsafe {
|
||||
executor.initialize();
|
||||
}
|
||||
|
||||
unsafe { NVIC::unmask(irq) }
|
||||
|
||||
|
@ -54,6 +54,10 @@ mod thread {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
init(self.inner.spawner());
|
||||
|
||||
loop {
|
||||
|
@ -48,6 +48,10 @@ mod thread {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
init(self.inner.spawner());
|
||||
|
||||
loop {
|
||||
|
@ -55,6 +55,10 @@ mod thread {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
init(self.inner.spawner());
|
||||
|
||||
loop {
|
||||
|
@ -70,6 +70,10 @@ mod thread {
|
||||
/// - a `static mut` (unsafe)
|
||||
/// - a local variable in a function you know never returns (like `fn main() -> !`), upgrading its lifetime with `transmute`. (unsafe)
|
||||
pub fn start(&'static mut self, init: impl FnOnce(Spawner)) {
|
||||
unsafe {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
unsafe {
|
||||
let executor = &self.inner;
|
||||
let future = Closure::new(move |_| {
|
||||
|
@ -328,7 +328,7 @@ impl SyncExecutor {
|
||||
#[cfg(feature = "integrated-timers")]
|
||||
let alarm = unsafe { unwrap!(embassy_time_driver::allocate_alarm()) };
|
||||
|
||||
let this = Self {
|
||||
Self {
|
||||
run_queue: RunQueue::new(),
|
||||
pender,
|
||||
|
||||
@ -336,12 +336,12 @@ impl SyncExecutor {
|
||||
timer_queue: timer_queue::TimerQueue::new(),
|
||||
#[cfg(feature = "integrated-timers")]
|
||||
alarm,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) unsafe fn initialize(&'static self) {
|
||||
#[cfg(feature = "integrated-timers")]
|
||||
embassy_time_driver::set_alarm_callback(this.alarm, Self::alarm_callback, &this as *const _ as *mut ());
|
||||
|
||||
this
|
||||
embassy_time_driver::set_alarm_callback(self.alarm, Self::alarm_callback, self as *const _ as *mut ());
|
||||
}
|
||||
|
||||
/// Enqueue a task in the task queue
|
||||
@ -494,6 +494,15 @@ impl Executor {
|
||||
}
|
||||
}
|
||||
|
||||
/// Initializes the executor.
|
||||
///
|
||||
/// # Safety
|
||||
///
|
||||
/// This function must be called once before any other method is called.
|
||||
pub unsafe fn initialize(&'static self) {
|
||||
self.inner.initialize();
|
||||
}
|
||||
|
||||
/// Spawn a task in this executor.
|
||||
///
|
||||
/// # Safety
|
||||
@ -518,6 +527,8 @@ impl Executor {
|
||||
///
|
||||
/// # Safety
|
||||
///
|
||||
/// You must call `initialize` before calling this method.
|
||||
///
|
||||
/// You must NOT call `poll` reentrantly on the same executor.
|
||||
///
|
||||
/// In particular, note that `poll` may call the pender synchronously. Therefore, you
|
||||
|
@ -40,6 +40,10 @@ fn setup() -> (&'static Executor, Trace) {
|
||||
let trace = Trace::new();
|
||||
let context = Box::leak(Box::new(trace.clone())) as *mut _ as *mut ();
|
||||
let executor = &*Box::leak(Box::new(Executor::new(context)));
|
||||
unsafe {
|
||||
executor.initialize();
|
||||
}
|
||||
|
||||
(executor, trace)
|
||||
}
|
||||
|
||||
|
@ -155,7 +155,9 @@ impl Executor {
|
||||
time_driver: get_driver(),
|
||||
});
|
||||
|
||||
EXECUTOR.as_mut().unwrap()
|
||||
let executor = EXECUTOR.as_mut().unwrap();
|
||||
|
||||
executor
|
||||
})
|
||||
}
|
||||
|
||||
@ -241,11 +243,15 @@ impl Executor {
|
||||
///
|
||||
/// This function never returns.
|
||||
pub fn run(&'static mut self, init: impl FnOnce(Spawner)) -> ! {
|
||||
init(unsafe { EXECUTOR.as_mut().unwrap() }.inner.spawner());
|
||||
let executor = unsafe { EXECUTOR.as_mut().unwrap() };
|
||||
unsafe {
|
||||
executor.inner.initialize();
|
||||
}
|
||||
init(executor.inner.spawner());
|
||||
|
||||
loop {
|
||||
unsafe {
|
||||
EXECUTOR.as_mut().unwrap().inner.poll();
|
||||
executor.inner.poll();
|
||||
self.configure_pwr();
|
||||
asm!("wfe");
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user