Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cortex-m-pac crate: standard traits and result handling for Cortex-M targets #560

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

romancardenas
Copy link

This PR ports some of the ongoing work in the RISC-V ecosystem to Cortex-M targets. Namely, I adapted the riscv-pac crate to the new cortex-m-pac crate.

The main purpose of this crate is to isolate fundamental traits and data types from potential breaking changes in cortex-m. Namely, it currently contains traits for enumerating exceptions, interrupts, priorities, and core IDs. It also provides a basic fallible function support for Cortex-M devices, with an error enum with some of the most typical issues developers may face.

Related PRs in RISC-V: #222 and #223

Related PRs in Cortex-M: #488

Once this is merged, I plan to continue porting new functionalities from RISC-V to Cortex-M (e.g., new syntax for interrupt and exception macros)

@romancardenas romancardenas requested a review from a team as a code owner October 9, 2024 21:11

/// Represents error variants for the library.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Error {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since core::error::Error is now stable it might make sense to impl it here? since you already have impl core::fmt::Display this should be straight-forward?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done!

@romancardenas
Copy link
Author

Implementing core::error::Error implies bumping MSRV to 1.81. Let me know what you think and if it is worth it such a change

cortex-m-pac/Cargo.toml Outdated Show resolved Hide resolved
romancardenas and others added 2 commits October 16, 2024 10:00
Co-authored-by: Ralph Ursprung <39383228+rursprung@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants