A simple multi-core fixed interval task scheduler.
In embedded applications it is often needed to do things in fixed intervals. This scheduler provides a flexible interface to define fixed interval tasks.
A macro defines at compile time:
The macro generates a trait, which must be implemented for one or more application objects. This trait defines the functions being called by the scheduler at the specified intervals.
Task trait methods are optional to implement. The default implementation is to do nothing.
To keep things simple, the scheduler has a couple of restrictions:
0..=9Scheduling behavior:
[dependencies]
timeslice = { version = "0.7", features = [ "hal-espidf", "meas" ] }A simple usage example can look like this:
// Here we define the scheduler, its tasks and behavior.
timeslice::define_sched! {
name: sched_main,
num_objs: 1,
tasks: {
{ name: task_10ms, period: 10 ms, cpu: 0, prio: 9, stack: 16 kiB },
{ name: task_50ms, period: 50 ms, cpu: 0, prio: 8, stack: 3 kiB },
{ name: task_100ms, period: 100 ms, cpu: 1, prio: 7, stack: 16 kiB },
},
}
// This structure belongs to your application. It contains application state.
struct MyThing {
// ...
}
impl MyThing {
fn new() -> Self {
Self {
// ...
}
}
}
// Implement the scheduler's tasks for your application.
impl sched_main::Ops for MyThing {
fn task_10ms(&self) {
// Called every 10 ms.
// ... Put your code here ...
}
fn task_50ms(&self) {
// Called every 50 ms.
// ... Put your code here ...
}
fn task_100ms(&self) {
// Called every 100 ms.
// ... Put your code here ...
}
}
fn main() {
// Initialize the application.
let thing = std::sync::Arc::new(MyThing::new());
// Initialize the scheduler and register your application.
sched_main::init([thing]);
}See the documentation for more complex examples.
One backend has to be selected via feature flags. The
following backends are available:
hal-espidf: Use esp-idf-hal and
esp-idf-svc hal backend. Select this, if you use an ESP
microcontroller.hal-dummy: Backend for testing only. It does nothing.
You should never select it.Only one of the hal backend feature flags can be
selected.
The hal-espidf backend depends on the following
crates:
esp-idf-hal = "0.46"
esp-idf-svc = "0.52"Porting this crate to other hardware is possible. Please open an Issue and/or a Pull Request, if you need support for other hardware.
meas: If the meas feature is enabled, then
functions for run time measurements will be enabled. If this feature
flag is not given, then the run time measurement functions will be empty
dummies.On hal-espidf each task runs as a
std::thread that is pinned to the specified CPU core with
the specified priority plus 5. The threads wait for a trigger signal
from a periodic high priority ESP timer task. The ESP timer task has a
higher priority than all defined scheduler tasks, so it can preempt any
of the scheduler tasks.
This crate does not use unsafe code.
Copyright 2023-2026 Michael Büsch m@bues.ch
Licensed under the Apache License version 2.0 or the MIT license, at your option.
SPDX-License-Identifier: Apache-2.0 OR MIT