Compare commits

...

4 Commits
v0.2.4 ... main

4 changed files with 6 additions and 9 deletions

View File

@ -16,9 +16,7 @@ jobs:
override: true override: true
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
use-cross: true
command: check command: check
args: --target thumbv6m-none-eabi
fmt: fmt:
name: Rustfmt name: Rustfmt
@ -50,9 +48,8 @@ jobs:
- run: rustup component add clippy - run: rustup component add clippy
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
use-cross: true
command: clippy command: clippy
args: --target thumbv6m-none-eabi -- -D warnings args: -- -D warnings
ci: ci:
if: ${{ success() }} if: ${{ success() }}

View File

@ -4,8 +4,8 @@ version = "0.2.4"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"] authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2021" edition = "2021"
description = "PAC for the Vorago VA108xx family of microcontrollers" description = "PAC for the Vorago VA108xx family of microcontrollers"
homepage = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs" homepage = "https://egit.irs.uni-stuttgart.de/rust/va108xx"
repository = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs" repository = "https://egit.irs.uni-stuttgart.de/rust/va108xx"
license = "Apache-2.0" license = "Apache-2.0"
keywords = ["no-std", "arm", "cortex-m", "vorago", "va108xx"] keywords = ["no-std", "arm", "cortex-m", "vorago", "va108xx"]
categories = ["embedded", "no-std", "hardware-support"] categories = ["embedded", "no-std", "hardware-support"]

View File

@ -10,7 +10,7 @@ Voragos VA108xx series of Cortex-M0 based microcontrollers.
The crate was generated using [`svd2rust`](https://github.com/rust-embedded/svd2rust). The crate was generated using [`svd2rust`](https://github.com/rust-embedded/svd2rust).
If you are interested in higher-level abstractions, it is recommended you visit If you are interested in higher-level abstractions, it is recommended you visit
the [`va108xx-hal` HAL crate](https://github.com/robamu-org/va108xx-hal-rs) and the [`va108xx-hal` HAL crate](https://egit.irs.uni-stuttgart.de/rust/va108xx-hal) and
the [`vorago-reb1` BSP crate](https://github.com/robamu-org/vorago-reb1-rs) which build on top of the [`vorago-reb1` BSP crate](https://github.com/robamu-org/vorago-reb1-rs) which build on top of
this PAC and provide application examples as well. this PAC and provide application examples as well.

View File

@ -24,7 +24,7 @@ pipeline {
sh 'cargo fmt' sh 'cargo fmt'
} }
} }
stage('Build') { stage('Check') {
agent { agent {
dockerfile { dockerfile {
dir 'automation' dir 'automation'
@ -32,7 +32,7 @@ pipeline {
} }
} }
steps { steps {
sh 'cargo build' sh 'cargo check --target thumbv6m-none-eabi'
} }
} }
} }