diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb0b87d..8caa486 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,14 +16,11 @@ jobs: override: true - uses: actions-rs/cargo@v1 with: - use-cross: true command: check - args: --target thumbv6m-none-eabi - uses: actions-rs/cargo@v1 with: - use-cross: true command: check - args: --examples --target thumbv6m-none-eabi + args: --examples fmt: name: Rustfmt @@ -55,9 +52,8 @@ jobs: - run: rustup component add clippy - uses: actions-rs/cargo@v1 with: - use-cross: true command: clippy - args: --target thumbv6m-none-eabi -- -D warnings + args: -- -D warnings ci: if: ${{ success() }} diff --git a/README.md b/README.md index 220f287..f24ec18 100644 --- a/README.md +++ b/README.md @@ -85,4 +85,4 @@ is contained within the 7. Flashing the board might work differently for different boards and there is usually more than one way. You can find example instructions for the REB1 development board - [here](https://github.com/robamu-org/vorago-reb1-rs). + [here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1). diff --git a/src/i2c.rs b/src/i2c.rs index 507f8fd..540853c 100644 --- a/src/i2c.rs +++ b/src/i2c.rs @@ -2,7 +2,7 @@ //! //! ## Examples //! -//! - [REB1 I2C temperature sensor example](https://github.com/robamu-org/vorago-reb1-rs/blob/main/examples/temp-sensor.rs) +//! - [REB1 I2C temperature sensor example](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1/src/branch/main/examples/adt75-temp-sensor.rs) use crate::{ clock::{enable_peripheral_clock, PeripheralClocks}, pac::{I2CA, I2CB, SYSCONFIG},