Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
roverc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pasteau Francois
roverc
Commits
1e44e10e
Commit
1e44e10e
authored
1 month ago
by
Pasteau Francois
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit
parents
Branches
main
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+33
-0
33 additions, 0 deletions
CMakeLists.txt
msg/RGB.msg
+3
-0
3 additions, 0 deletions
msg/RGB.msg
msg/WheelSpeed.msg
+5
-0
5 additions, 0 deletions
msg/WheelSpeed.msg
package.xml
+21
-0
21 additions, 0 deletions
package.xml
with
62 additions
and
0 deletions
CMakeLists.txt
0 → 100644
+
33
−
0
View file @
1e44e10e
cmake_minimum_required
(
VERSION 3.8
)
project
(
roverc
)
if
(
CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
add_compile_options
(
-Wall -Wextra -Wpedantic
)
endif
()
# find dependencies
find_package
(
ament_cmake REQUIRED
)
# uncomment the following section in order to fill in
# further dependencies manually.
# find_package(<dependency> REQUIRED)
find_package
(
rosidl_default_generators REQUIRED
)
rosidl_generate_interfaces
(
${
PROJECT_NAME
}
"msg/RGB.msg"
"msg/WheelSpeed.msg"
)
if
(
BUILD_TESTING
)
find_package
(
ament_lint_auto REQUIRED
)
# the following line skips the linter which checks for copyrights
# comment the line when a copyright and license is added to all source files
set
(
ament_cmake_copyright_FOUND TRUE
)
# the following line skips cpplint (only works in a git repo)
# comment the line when this package is in a git repo and when
# a copyright and license is added to all source files
set
(
ament_cmake_cpplint_FOUND TRUE
)
ament_lint_auto_find_test_dependencies
()
endif
()
ament_package
()
This diff is collapsed.
Click to expand it.
msg/RGB.msg
0 → 100644
+
3
−
0
View file @
1e44e10e
float32 red
float32 green
float32 blue
This diff is collapsed.
Click to expand it.
msg/WheelSpeed.msg
0 → 100644
+
5
−
0
View file @
1e44e10e
int8 front_right
int8 front_left
int8 rear_right
int8 rear_left
\ No newline at end of file
This diff is collapsed.
Click to expand it.
package.xml
0 → 100644
+
21
−
0
View file @
1e44e10e
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package
format=
"3"
>
<name>
roverc
</name>
<version>
0.0.0
</version>
<description>
TODO: Package description
</description>
<maintainer
email=
"robotique@todo.todo"
>
robotique
</maintainer>
<license>
TODO: License declaration
</license>
<buildtool_depend>
ament_cmake
</buildtool_depend>
<build_depend>
rosidl_default_generators
</build_depend>
<exec_depend>
rosidl_default_runtime
</exec_depend>
<test_depend>
ament_lint_auto
</test_depend>
<test_depend>
ament_lint_common
</test_depend>
<member_of_group>
rosidl_interface_packages
</member_of_group>
<export>
<build_type>
ament_cmake
</build_type>
</export>
</package>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment