diff --git a/CHANGELOG.md b/CHANGELOG.md index df51998..952d99c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.1] - 2024-11-05 + +### Changed + +- Remove the "$" symbol from README file. + ## [v1.1.0] - 2024-09-20 ### Added diff --git a/README.md b/README.md index e95917b..8b9ce98 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ Here are the parameters available at compile time: For instance, to build the project with LR1110MB1GJS shield simply run make as follows ```shell -$ cd $SDK_FOLDER/lr11xx/apps/ranging_demo/makefile -$ make RADIO_SHIELD=LR1110MB1GJS +cd $SDK_FOLDER/lr11xx/apps/ranging_demo/makefile +make RADIO_SHIELD=LR1110MB1GJS ``` ##### Command line configuration @@ -76,7 +76,7 @@ Additional configuration flags can be passed from command line to compiler with This is dedicated to define macros that can be defined like the following: ```bash -$ make EXTRAFLAGS='-D=' +make EXTRAFLAGS='-D=' ``` Where `` is the macro name to set and `` is the value to set for this macro. @@ -104,7 +104,7 @@ On the NUCLEO-L476RG development board, the firmware prints debug information to For instance, using stty on Linux with a device available in `/dev/ttyACM0`: ```shell -$ stty -echo raw speed 921600 < /dev/ttyACM0 && cat /dev/ttyACM0 +stty -echo raw speed 921600 < /dev/ttyACM0 && cat /dev/ttyACM0 ``` ## Supported toolchains