Changes between Version 6 and Version 7 of PacpusTutorials
- Timestamp:
- Oct 2, 2015, 4:35:50 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PacpusTutorials
v6 v7 29 29 The objective of this exercise is to understand the build process of a PACPUS project. The utility 'cmake' is used to create the Makefile of the project, and finally we use the GNU Compiler Collection to build the plugins. 30 30 31 Thanks to the different source codes (.cpp, .h and CMakeLists.txt) in the folder 'template', create a new PACPUS project containing just 1 component. This component may generate a message in the terminal at a user selectable frequency.32 31 33 Once you have built your plugin, run it in /opt/pacpus/x.y.z/bin folder with the PacpusSensor executable. 32 __'''Goal of this exercise:'''__ \\ 33 Thanks to the different source codes (.cpp, .h and CMakeLists.txt) in the folder 'template', create a new PACPUS project containing just 1 component. \\ 34 This component may generate a message in the terminal at a user selectable frequency. 34 35 35 Indications: 36 Once you have built your plugin, run it in /opt/pacpus/x.y.z/bin folder with the !PacpusSensor executable. 37 38 __'''Indications:'''__ 36 39 - You can use QTimer to generate the timer. 37 40 - A component can be parametrized in a XML file, it might be useful to change the message display frequency.