aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-11-13 09:52:32 -0800
committerGitHub <[email protected]>2025-11-13 09:52:32 -0800
commitf53d4975774dd0c6009ad72692f394dca1083c0b (patch)
tree5d476fef7a7e10c407b707ab16b37c168eebc451
parent1a37ff58ac46bba0ea2c7f3bd26e830b95fc2132 (diff)
Add status badges (#14)
-rw-r--r--.github/workflows/rolling.yml18
-rw-r--r--README.md4
2 files changed, 6 insertions, 16 deletions
diff --git a/.github/workflows/rolling.yml b/.github/workflows/rolling.yml
index 386c0df5c..1d93cfe25 100644
--- a/.github/workflows/rolling.yml
+++ b/.github/workflows/rolling.yml
@@ -40,22 +40,8 @@ jobs:
40 strategy: 40 strategy:
41 fail-fast: false 41 fail-fast: false
42 matrix: 42 matrix:
43 msrv: ["1.85"] # We're relying on namespaced-features, which 43 msrv: ["1.91"]
44 # was released in 1.60 44
45 #
46 # We also depend on `fixed' which requires rust
47 # 1.71
48 #
49 # Additionally, we depend on embedded-hal-async
50 # which requires 1.75
51 #
52 # embassy-time requires 1.79 due to
53 # collapse_debuginfo
54 #
55 # embassy upstream switched to rust 1.83
56 #
57 # embedded-services (storage bus) dependency
58 # requires 1.85
59 name: ubuntu / ${{ matrix.msrv }} (${{ matrix.commit }}) 45 name: ubuntu / ${{ matrix.msrv }} (${{ matrix.commit }})
60 steps: 46 steps:
61 - uses: actions/checkout@v5 47 - uses: actions/checkout@v5
diff --git a/README.md b/README.md
index 8a93b5f4a..86c0413f0 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
1# Embassy MCXA276 HAL 1# Embassy MCXA276 HAL
2 2
3[![check](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/check.yml/badge.svg)](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/check.yml)
4[![no-std](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/nostd.yml/badge.svg)](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/nostd.yml)
5[![rolling](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/rolling.yml/badge.svg)](https://github.com/OpenDevicePartnership/embassy-mcxa/actions/workflows/rolling.yml)
6
3A Hardware Abstraction Layer (HAL) for the NXP MCXA276 microcontroller 7A Hardware Abstraction Layer (HAL) for the NXP MCXA276 microcontroller
4using the Embassy async framework. This HAL provides safe, idiomatic 8using the Embassy async framework. This HAL provides safe, idiomatic
5Rust interfaces for GPIO, UART, and OSTIMER peripherals. 9Rust interfaces for GPIO, UART, and OSTIMER peripherals.