Changes between Initial Version and Version 1 of PacpusSensors/OpencvVideo


Ignore:
Timestamp:
Apr 8, 2016, 11:14:44 AM (9 years ago)
Author:
ldecherf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PacpusSensors/OpencvVideo

    v1 v1  
     1[[PageOutline(1-10,Contents)]]
     2
     3= CanGateway plugin =
     4
     5== Goal ==
     6
     7The CanGateway plugin is in charge of interfacing a CAN bus and it manages the CAN card.
     8
     9== Driver installation ==
     10
     11=== Linux driver ===
     12
     13The supported driver are:
     14- socketCAN
     15- kvaser card (USB, PCI, PCIe,...)
     16
     17First of all, follow the README in source:pacpussensors/trunk/CanGateway/driver/kvaser/linuxcan.tar.gz in order to install the kvaser driver.
     18
     19''Note that this procedure blacklist the SocketCAN driver.''
     20
     21To check if the KVASER driver is properly installed, type in a terminal {{{lsmod | grep kv}}}.
     22You must see a kvaser driver running:
     23{{{
     24#!sh
     25$ lsmod | grep kv
     26kvm                   452088  0
     27kvpcican               43541  0
     28}}}
     29
     30If the automatic loading of the driver doesn't work at startup, you can add the file {{{kvaser.conf}}} containing this text:
     31{{{
     32# kvaser module load
     33kvpcican
     34}}}
     35in the {{{/etc/modules-load.d}}} folder.
     36
     37
     38=== Windows driver ===
     39
     40TODO
     41
     42
     43== Compilation ==
     44
     45First, make sure the CMakeList.txt at the root of the directory is well configured (into trunk/). In order to install the CanGateway plugin, modify the file and verify you have the following line :
     46{{{
     47#!sh
     48add_subdirectory(CanGateway)
     49}}}
     50
     51Also, the environment variable $PACPUS_ROOT must point to the pacpus installation directory (you normally already set it when you installed PACPUS).
     52
     53
     54Then we need to configure the installation :
     55{{{
     56#!sh
     57$ export PACPUS_ROOT=/opt/pacpus/0.2.3 # Pacpus Framework path
     58$ cd trunk/build/ # first go into the build folder
     59$ cmake ..
     60}}}
     61
     62Now we can compile and install :
     63{{{
     64#!sh
     65$ sudo make install
     66}}}
     67
     68Make sure the executable files you just created are copied into $PACPUS_ROOT/lib/.
     69
     70
     71= Execution =
     72
     73In order to work with the plugins we want, PACPUS needs an XML file.
     74
     75== XML configuration ==
     76
     77Put an example xml file.
     78
     79Fields:
     80- source ...
     81- speed ...
     82
     83== Running the plugin ==
     84
     85Please verify that you have a working pacpus installation on your system: refer to the GettingStarted page.
     86
     87=== Testing under Linux ===
     88
     89Run the plugin with this command:
     90
     91{{{
     92cd $PACPUS_ROOT
     93./PacpusSensor can.xml
     94}}}
     95
     96=== Testing under Windows ===
     97
     98TODO