diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04b4205..a77f9bc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,4 +26,4 @@ rust-build: script: - rustc --version && cargo --version - cargo build --release --jobs 1 - - cargo test --lib --target x86_64-unknown-linux-gnu -- --test-threads 1 + - cargo test --lib --target x86_64-unknown-linux-gnu -- --test-threads 1 diff --git a/README.md b/README.md index 73d9f14..5f121de 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,11 @@ stm32f4disc-demo ================ This is just some STM32F4DISCOVERY demo application using Rust. -It a serial command-interface for controlling (via GPIO) what the LED -ring does: cycle clock-wise, counter clock-wise, or follow the accelerometer. -The accelerometer is accessed via SPI. +It has a simple serial command-interface for controlling (via GPIO) what the +LED ring does: cycle clock-wise, counter clock-wise, or follow the +accelerometer. The accelerometer is accessed via SPI. + +The project also shows how to do unit testing and how to use GitLab CI. Serial interface ----------------