From: Romain Forlot Date: Wed, 22 Mar 2017 10:53:24 +0000 (+0000) Subject: Fix: typo X-Git-Tag: 3.99.1~173^2~1 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=ad366bd680d5ce0bef49242cf6b3902fe46e0141;p=apps%2Flow-level-can-service.git Fix: typo Change-Id: I0e0753a520471129987d26e0a03be732fc311d02 Signed-off-by: Romain Forlot --- diff --git a/README.md b/README.md index a962562..d24ce07 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ As long this binding is based on [OpenXC vi-firmware](https://github.com/openxc/ The reference documentation of the JSON file can be found [here](https://github.com/openxc/vi-firmware/blob/master/docs/config/reference.rst). ## Getting started + ### Build requirements * CMake version 3.0 or later @@ -19,7 +20,7 @@ The reference documentation of the JSON file can be found [here](https://github. You can install any of these using your package manager. For instance, inside the iotbzh's docker image, you must enter this command : - devel@bsp-devkit:~/$ sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-program-options-dev + sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-program-options-dev You may want to install `libboost-all-dev` to get all boost components even if it's not required. @@ -38,7 +39,7 @@ $ mkdir -p build $ cd build $ cmake -G "Unix Makefiles" .. $ make - +``` ### Naming convention @@ -70,7 +71,7 @@ engine.oil.temperature engine.torque ``` -> **NOTE** It's recommended that you follow this naming convention to named your CAN signals. +> **NOTE** It's recommended that you follow this naming convention to name your CAN signals. > > There is only character `*` that is forbidden in names because it's used as wildcard for subscription and unsubscrition. > @@ -87,9 +88,10 @@ You can use some basic decoder provided by default by the binding which are: ## Generate your config file To generate your config file you just have to run the generator using the `-m` option to specify your JSON file. -
-devel@bsp-devkit:~/projects/can-config-generator/build(master)$ can-config-generator -m ../tests/basic.json -o configuration-generated.cpp
-
+ +```bash +./can-config-generator -m ../tests/basic.json -o configuration-generated.cpp +``` If you omit the `-o` option, then code is generated on the stdout. You also can specify a header and a footer file.