From ac8030aa4fa071484ec8ccd4c908dd8d9b1a5f3e Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Thu, 11 Apr 2019 20:21:41 +0200 Subject: [PATCH] Improve the README a bit more --- .gitlab-ci.yml | 2 +- README.md | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) 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 ----------------