410bc4b613fe5d868f70b6a141eeeb91df00e235
[apps/agl-service-can-low-level.git] / docs / 2-Installation.md
1 # Prerequisites
2
3 * An AGL system installed with latest Chinook version \(>3.0.2\).
4
5 * Make sure you built the AGL generator else you will not be able to generate custom low-level CAN binding. Generator can be found [here](http://github.com/iotbzh/can-config-generator) with the attached instruction to install and run it.
6
7 It will produce a _configuration-generated.cpp_ file to paste in the source, _src/_, directory.
8
9 * Make sure you already set up the AGL SDK using the following [SDK Quick Setup Guide](http://docs.iot.bzh/docs/getting_started/en/dev/reference/setup-sdk-environment.html). Alternatively, please refer to official guides available on [AGL Developer Site](http://docs.automotivelinux.org/docs/devguides/en/dev/#guides).
10
11 To get the correct SDK version installed, you **must** prepare your environment with the **chinook-next** version. To do so, run the following command in your docker image in the step 4 in place of `... [ prepare build environment ] ...`:
12
13 > **NOTE** These commands assume that proprietary graphic drivers for Renesas Porter board are located in `/home/devel/share/proprietary-renesas-rcar` directory.
14
15 ```bash
16 $ prepare_meta -f chinook-next -o /xdt -l /home/devel/mirror -p /home/devel/share/proprietary-renesas-rcar/ -t porter -e wipeconfig -e rm_work
17 $ /xdt/build/agl-init-build-env
18 ```
19
20 * An [USB CAN adapter](http://shop.8devices.com/usb2can) connected to connector through the [right cable](http://www.mouser.fr/ProductDetail/EasySync/OBD-M-DB9-F-ES/)).
21
22 <!-- pagebreak -->
23
24 # Getting started
25
26 ## Use of CAN config generator
27
28 ### Build requirements
29
30 * CMake version 3.0 or later
31 * G++, Clang++ or any C++11 complient compiler.
32 * Boost
33   * filesystem
34   * program\_options
35   * system
36
37 You can install any of these using your package manager. For instance, inside the iotbzh's docker image, you must enter this command :
38
39 ```bash
40 $ sudo apt-get update
41 $ sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-program-options-dev
42 ```
43
44 You may want to install `libboost-all-dev` to get all boost components even if it's not required.
45
46 ### Compile
47
48 > **CAUTION** It is **very important** that you do not source the SDK environment file to compile this project because some build requirements aren't installed in the AGL SDK for now.
49
50 ```bash
51 $ export PATH=$PATH:/xdt/sdk/sysroots/x86_64-aglsdk-linux/usr/bin
52 $ export WD=$(pwd)
53 $ git clone https://github.com/iotbzh/can-config-generator.git
54 $ cd can-config-generator
55 $ mkdir -p build
56 $ cd build
57 $ cmake -G "Unix Makefiles" ..
58 $ make
59 ```
60
61 ### Naming convention
62
63 We chose a doted naming convention because it's a well know schema.
64
65 It separates and organize names into hierarchy. From the left to right, you describe your names using the more common ancestor at the left then more you go to the right the more it will be accurate.
66
67 Let's take an example, here is an example about standard PID name following this convention:
68
69 ```
70 engine.load
71 engine.coolant.temperature
72 fuel.pressure
73 intake.manifold.pressure
74 engine.speed
75 vehicle.speed
76 intake.air.temperature
77 mass.airflow
78 throttle.position
79 running.time
80 EGR.error
81 fuel.level
82 barometric.pressure
83 commanded.throttle.position
84 ethanol.fuel.percentage
85 accelerator.pedal.position
86 hybrid.battery-pack.remaining.life
87 engine.oil.temperature
88 engine.torque
89 ```
90
91 > **NOTE** It's recommended that you follow this naming convention to named your CAN signals.
92 >
93 > There is only character `*` that is forbidden in names because it's used as wildcard for subscription and unsubscrition.
94 >
95 > This described in the below chapter.
96
97 ### Generating JSON from Vector CANoe Database
98
99 > **CAUTION** This chapter has not been tested since we haven't necessary automotive tools for that. 
100
101 If you use CANoe to store your `gold standard` CAN signal definitions, you may be able to use the OpenXC `xml_to_json.py` script to make your JSON for you. First, export the Canoe .dbc file as XML - you can do this with Vector CANdb++. Next, create a JSON file according to the format defined above, but only define:
102
103 - CAN messages.
104 - Name of CAN signals within messages and their generic_name.
105 - Optionnaly name of diagnostic messages and their name.
106
107 To install the OpenXC utilities and runs `xml_to_json.py` script:
108
109 ```bash
110 $ sudo pip install openxc
111 $ cd /usr/local/lib/python2.7/dist-packages/openxc/generator
112 ```
113
114 Assuming the data exported from Vector is in `signals.xml` and your minimal mapping file is `mapping.json`, run the script:
115
116 ```bash
117 $ python -m openxc.utils ./xml_to_json.py signals.xml mapping.json signals.json
118 ```
119
120 The script scans `mapping.json` to identify the CAN messages and signals that you want to use from the XML file. It pulls the neccessary details of the messages (bit position, bit size, offset, etc) and outputs the resulting subset as JSON into the output file, `signals.json`.
121
122 The resulting file together with `mapping.json` will work as input to the code generation script.
123
124 ### Generate your config file
125
126 To generate your config file you just have to run the generator using the `-m` option to specify your JSON file.
127
128 ```bash
129 $ ./can-config-generator -m ../tests/basic.json -o configuration-generated.cpp
130 ```
131
132 If you omit the `-o` option, then code is generated on the stdout.  
133 You also can specify a header and a footer file.  
134 These files must be valid C++ fragment as long as they will be inserted as is.  
135 Use the `-h` option to display help.
136
137 > **CAUTION:** Each `diagnostic_message` must define the same `bus` as the binding will use only one bus.
138
139 ### Supported OpenXC items
140
141 About now, compliance with OpenXC reference is in progress, can-config-generator and CAN\_signaling will implement them soon.  
142 `initializers`, `loopers`, `commands` and `handlers` nodes are ignored for now.
143
144 This generator will follow OpenXC support status of the low level CAN signaling binding.
145
146 > **NOTE**: The `buses` item will not be supported by this generator because the binding use another way to declare and configure buses. Please refer to the binding's documentation.
147
148 ## Compile and install the binding
149 Clone the binding repository, copy the generated file and updated the git submodules.
150
151 Execute the following commands from this repository:
152
153 ```bash
154 $ cd $WD
155 $ git clone https://github.com/iotbzh/CAN_signaling
156 $ cd CAN_signaling
157 $ git submodule init
158 $ git submodule update
159 $ cp $WD/can-config-generator/build/configuration-generated.cpp src/
160 ```
161
162 ### Installation using *make install*
163
164 With an AGL SDK environment correctly configured and **sourced**, I suggest you to set the TARGET variable in the CMakeLists.txt file located under _src_ directory if you have an AGL target already running in your network.
165
166 Then you can directly build and install the binding and source directory on your target system.
167
168 Execute these commands to get your binding compile:
169
170 ```bash
171 $ mkdir -p build
172 $ cd build
173 $ cmake ..
174 $ make
175 ```
176
177 And if you have set TARGET variable, you can install it on your AGL system:
178
179 ```bash
180 $ make install
181 [ 16%] Built target bitfield
182 [ 27%] Built target isotp
183 [ 40%] Built target openxc
184 [ 48%] Built target uds
185 [ 97%] Built target low-can-binding
186 [100%] Built target widget
187 Install the project...
188 -- Install configuration: ""
189 true
190 { "added": "low-can-binding@0.1" }
191 ```
192
193 It's possible that you'll see the following message :
194
195 ```bash
196 Error org.freedesktop.DBus.Error.Failed: "system error"
197 ```
198
199 It's because installation remove the binding before installing it.
200
201 If it is the first time that you make the installation then you'll have this message in place of _**true**_.
202
203 ### Manual Installation
204
205 To install it manually, you need to copy the _low-can-binding.wgt_ file on your target, then from it execute the following commands :
206
207 On your host, to copy over the network :
208
209 ```bash
210 $ scp low-can-binding.wgt root@<target_IP>:~
211 ```
212
213 On the target, assuming _**wgt**_ file is in the root home directory:
214
215 ```bash
216 # afm-util install low-can-binding.wgt
217 { "added": "low-can-binding@0.1" }
218 ```