Skip to content

Commit

Permalink
docs(thread): enable the rendering of the core-affinity feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ROMemories committed Jan 10, 2025
1 parent 13d3d90 commit 9385d25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
--features "
bench,
coap,
core-affinity,
csprng,
defmt,
executor-thread,
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ jobs:
--features "
bench,
coap,
core-affinity,
csprng,
defmt,
executor-thread,
Expand Down
2 changes: 1 addition & 1 deletion src/ariel-os-threads/src/smp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ impl CoreId {
///
/// # Panics
///
/// Panics if `value` >= [`Chip::CORES`].
/// Panics if `value` >= [`CORE_COUNT`](crate::CORE_COUNT).
pub fn new(value: u8) -> Self {
if value >= Chip::CORES as u8 {
panic!(
Expand Down

0 comments on commit 9385d25

Please sign in to comment.