Changes between Version 8 and Version 9 of circlefollower_old
- Timestamp:
- Jul 26, 2017, 5:19:56 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
circlefollower_old
v8 v9 7 7 == Compilation == 8 8 9 Les programmes vont être compilés pour la cible et pour le PC. Pour cela le script ''cmake_code blocks.sh'' va faire un projet !CodeBlockspour le PC dans le répertoire ''build'' et un projet pour la cible dans le répertoire ''build_arm''.9 Les programmes vont être compilés pour la cible et pour le PC. Pour cela le script ''cmake_codelite.sh'' va faire un projet !CodeLite pour le PC dans le répertoire ''build'' et un projet pour la cible dans le répertoire ''build_arm''. 10 10 * compiler le simulateur 11 11 {{{ 12 12 $ cd $FLAIR_ROOT/flair-src/demos/CircleFollower/simulator 13 $ $FLAIR_ROOT/flair-dev/scripts/cmake_code blocks.sh13 $ $FLAIR_ROOT/flair-dev/scripts/cmake_codelite.sh 14 14 $ cd build 15 $ make 15 $ make -j4 16 16 $ cd ../build_arm 17 $ make 17 $ make -j4 18 18 }}} 19 19 * compiler le programme de commande 20 20 {{{ 21 21 $ cd $FLAIR_ROOT/flair-src/demos/CircleFollower/uav 22 $ $FLAIR_ROOT/flair-dev/scripts/cmake_code blocks.sh22 $ $FLAIR_ROOT/flair-dev/scripts/cmake_codelite.sh 23 23 $ cd build 24 $ make 24 $ make -j4 25 25 $ cd ../build_arm 26 $ make 26 $ make -j4 27 27 }}} 28 28