-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
130 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,10 +61,3 @@ rosrun beginner_tutorials talker | |
``` | ||
rosrun beginner_tutorials listener | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
hiii |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="platform_name" default="sakshi" /> | ||
<arg name="publisher_topic_name" default="/chatter" /> | ||
<arg name="publisher_rate" default="20" /> | ||
<arg name="service_name" default="/add_two_ints" /> | ||
<arg name="subscriber_topic_name" default="/chatter" /> | ||
<group> | ||
<node pkg="beginner_tutorials" type="talker" name="talker_$(arg platform_name)"> | ||
<param name="publisher_topic_name" value="$(arg publisher_topic_name)"/> | ||
<param name="publisher_rate" value="$(arg publisher_rate)"/> | ||
<param name="service_name" value="$(arg service_name)"/> | ||
</node> | ||
</group> | ||
|
||
<group> | ||
<node pkg="beginner_tutorials" type="listener" name="listener_$(arg platform_name)"> | ||
<param name="subscriber_topic_name" value="$(arg subscriber_topic_name)"/> | ||
<param name="service_name" value="$(arg service_name)"/> | ||
</node> | ||
</group> | ||
|
||
|
||
</launch> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
<!-- One maintainer tag required, multiple allowed, one person per tag --> | ||
<!-- Example: --> | ||
<!-- <maintainer email="[email protected]">Jane Doe</maintainer> --> | ||
<maintainer email="sakshi@todo.todo">sakshi</maintainer> | ||
<maintainer email="sakshi@umd.edu">sakshi</maintainer> | ||
|
||
|
||
<!-- One license tag required, multiple allowed, one license per tag --> | ||
<!-- Commonly used license strings: --> | ||
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 --> | ||
<license>TODO</license> | ||
<license>MIT</license> | ||
|
||
|
||
<!-- Url tags are optional, but multiple are allowed, one per tag --> | ||
|
@@ -52,6 +52,8 @@ | |
<build_depend>roscpp</build_depend> | ||
<build_depend>rospy</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
<exec_depend>message_runtime</exec_depend> | ||
<build_export_depend>roscpp</build_export_depend> | ||
<build_export_depend>rospy</build_export_depend> | ||
<build_export_depend>std_msgs</build_export_depend> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
[include/beginner_tutorials/listener.hpp:19]: (style) class 'Listener' does not have a copy constructor which is recommended since the class contains a pointer to allocated memory. | ||
[src/talker.cpp:13]: (warning) Member variable 'Talker::publisher_rate' is not initialized in the constructor. | ||
[src/talker.cpp:19]: (warning) Member variable 'Talker::publisher_rate' is not initialized in the constructor. | ||
[src/talker.cpp:20]: (style) Value of pointer 'nh_p', which points to allocated memory, is copied in copy constructor instead of allocating new memory. | ||
[include/beginner_tutorials/talker.hpp:19]: (warning) The class 'Talker' has 'copy constructor' but lack of 'operator='. | ||
(information) Cppcheck cannot find all the include files (use --check-config for details) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Checking src/listener.cpp ... | ||
1/4 files checked 31% done | ||
1/4 files checked 34% done | ||
Checking src/listener_node.cpp ... | ||
2/4 files checked 44% done | ||
Checking src/talker.cpp ... | ||
3/4 files checked 86% done | ||
3/4 files checked 90% done | ||
Checking src/talker_node.cpp ... | ||
4/4 files checked 100% done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
int64 a | ||
int64 b | ||
--- | ||
int64 sum |