-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalker.cpp
More file actions
90 lines (58 loc) · 1.45 KB
/
talker.cpp
File metadata and controls
90 lines (58 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <ros/ros.h>
#include "std_msgs/String.h"
#include <systemc>
#include "chattercallback.hpp"
#include <iostream>
using namespace std;
using namespace sc_core;
SC_MODULE(talker)
{
void publish()
{
cout<<("Start Publisher in Talker\n");
ros::NodeHandle n;
ros::Publisher chatter_pub = n.advertise<std_msgs::String>("send", 1000);
ros::Rate loop_rate(1);
int count = 1;
while (count<=20)
{
std_msgs::String msg;
stringstream ss;
ss << count;
msg.data = ss.str();
ROS_INFO("%s", msg.data.c_str());
chatter_pub.publish(msg);
ros::spinOnce();
loop_rate.sleep();
++count;
wait(SC_ZERO_TIME);
}
}
void subscribe()
{
cout<<("Start Subscriber in Talker\n");
ros::NodeHandle n;
ros::Subscriber sub ;
sub = n.subscribe("receive", 1000, chatterCallback);
while (1)
{
//ros::spinOnce();
wait(SC_ZERO_TIME);
}
}
SC_CTOR(talker)
{
cout<<("Start CTOR Talker\n");
int argc;
char **argv;
ros::init(argc, argv, "talker");
SC_THREAD(publish);
SC_THREAD(subscribe);
}
};
int sc_main(int argc, char *argv[])
{
talker talker1("talker");
sc_start();
return 0;
}