You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tutorials/04_messages.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ cd ~/ign_transport_tutorial
17
17
18
18
## Publisher
19
19
20
-
Download the [publisher.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/publisher.cc) file within the `ign_transport_tutorial`
20
+
Download the [publisher.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/publisher.cc) file within the `ign_transport_tutorial`
21
21
folder and open it with your favorite editor:
22
22
23
23
```{.cpp}
@@ -132,7 +132,7 @@ The method *Publish()* sends a message to all the subscribers.
132
132
133
133
## Subscriber
134
134
135
-
Download the [subscriber.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber.cc)
135
+
Download the [subscriber.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber.cc)
136
136
file into the `ign_transport_tutorial` folder and open it with your favorite editor:
137
137
138
138
```{.cpp}
@@ -212,7 +212,7 @@ until you hit *CTRL-C*. Note that this function captures the *SIGINT* and
212
212
213
213
## Building the code
214
214
215
-
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt) file within the `ign_transport_tutorial` folder.
215
+
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt) file within the `ign_transport_tutorial` folder.
216
216
217
217
Once you have all your files, go ahead and create a `build/` directory within
218
218
the `ign_transport_tutorial` directory.
@@ -347,7 +347,7 @@ between Ignition Transport and another protocol or if you want to just print the
347
347
content of a generic protobuf message using `DebugString()`, among other use
348
348
cases.
349
349
350
-
Download the [subscriber_generic.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber_generic.cc) file within the `ign_transport_tutorial` folder and open it with your favorite editor:
350
+
Download the [subscriber_generic.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber_generic.cc) file within the `ign_transport_tutorial` folder and open it with your favorite editor:
351
351
352
352
```{.cpp}
353
353
#include <google/protobuf/message.h>
@@ -463,12 +463,12 @@ often the integration of the message generation into the build system of your
463
463
project. Next, you can find an example of a publisher and subscriber using a
464
464
custom Protobuf message integrated with CMake.
465
465
466
-
Download the [publisher_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/publisher_custom_msg.cc)
467
-
and the [subscriber_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/subscriber_custom_msg.cc)
466
+
Download the [publisher_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/publisher_custom_msg.cc)
467
+
and the [subscriber_custom_msg.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/subscriber_custom_msg.cc)
468
468
files within the `ign_transport_tutorial`. Then, create a `msgs` folder and
469
-
download the [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/stringmsg.proto)
470
-
and the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/CMakeLists.txt)
471
-
files within the `msgs` folder. Finally, we'll need the main [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt)
469
+
download the [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/stringmsg.proto)
470
+
and the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/CMakeLists.txt)
471
+
files within the `msgs` folder. Finally, we'll need the main [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt)
472
472
file. You should have this file from the previous examples. Otherwise,
473
473
download and place it within the `ign_transport_tutorial` folder.
Copy file name to clipboardexpand all lines: tutorials/05_services.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ cd ~/ign_transport_tutorial
25
25
26
26
## Responser
27
27
28
-
Download the [responser.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser.cc) file within the ``ign_transport_tutorial``
28
+
Download the [responser.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser.cc) file within the ``ign_transport_tutorial``
29
29
folder and open it with your favorite editor:
30
30
31
31
```{.cpp}
@@ -133,7 +133,7 @@ until you hit *CTRL-C*. Note that this function captures the *SIGINT* and
133
133
134
134
## Synchronous requester
135
135
136
-
Download the [requester.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester.cc) file within the ``ign_transport_tutorial``
136
+
Download the [requester.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester.cc) file within the ``ign_transport_tutorial``
137
137
folder and open it with your favorite editor:
138
138
139
139
```{.cpp}
@@ -228,7 +228,7 @@ message.
228
228
229
229
## Asynchronous requester
230
230
231
-
Download the [requester_async.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_async.cc) file within the
231
+
Download the [requester_async.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_async.cc) file within the
232
232
``ign_transport_tutorial`` folder and open it with your favorite editor:
233
233
234
234
```{.cpp}
@@ -314,7 +314,7 @@ oneway service to process service requests without sending back responses.
314
314
Oneway services don't accept any output parameters nor the requests have to wait
315
315
for the response.
316
316
317
-
Download the [responser_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser_oneway.cc) file within the
317
+
Download the [responser_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser_oneway.cc) file within the
318
318
``ign_transport_tutorial`` folder and open it with your favorite editor:
319
319
320
320
```{.cpp}
@@ -389,7 +389,7 @@ This case is similar to the oneway service provider. This code can be used for
389
389
requesting a service that does not need a response back. We don't need any
390
390
output parameters in this case nor we have to wait for the response.
391
391
392
-
Download the [requester_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_oneway.cc) file within the
392
+
Download the [requester_oneway.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_oneway.cc) file within the
393
393
``ign_transport_tutorial`` folder and open it with your favorite editor:
394
394
395
395
```{.cpp}
@@ -447,7 +447,7 @@ your service request is handled.
447
447
Sometimes we want to receive some result but don't have any input parameter to
448
448
send.
449
449
450
-
Download the [responser_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/responser_no_input.cc)
450
+
Download the [responser_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/responser_no_input.cc)
451
451
file within the ``ign_transport_tutorial`` folder and open it with your
452
452
favorite editor:
453
453
@@ -527,7 +527,7 @@ service requests.
527
527
This case is similar to the service without input parameter. We don't send any
528
528
request.
529
529
530
-
Download the [requester_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/requester_no_input.cc)
530
+
Download the [requester_no_input.cc](https://github.com/ignitionrobotics/ign-transport/raw/master/example/requester_no_input.cc)
531
531
file within the ``ign_transport_tutorial`` folder and open it with your
532
532
favorite editor:
533
533
@@ -570,14 +570,14 @@ request timed out or reached the service provider and ``result`` shows if the
570
570
service was successfully executed.
571
571
572
572
We also have the async version for service request without input. You should
file within the ``ign_transport_tutorial`` folder.
575
575
576
576
## Building the code
577
577
578
-
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/CMakeLists.txt) file
578
+
Download the [CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/CMakeLists.txt) file
579
579
within the ``ign_transport_tutorial`` folder. Then, download
580
-
[CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/CMakeLists.txt) and [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/example/msgs/stringmsg.proto) inside the
580
+
[CMakeLists.txt](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/CMakeLists.txt) and [stringmsg.proto](https://github.com/ignitionrobotics/ign-transport/raw/master/example/msgs/stringmsg.proto) inside the
581
581
``msgs`` directory.
582
582
583
583
Once you have all your files, go ahead and create a ``build/`` folder within
We're going to build a Docker image and run it inside your host computer.
28
-
Download the [build.bash](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/build.bash), [run.bash](https://github.com/ignitionrobotics/ign-transport/raw/ign-transport9/docker/run.bash) and
Download the [build.bash](https://github.com/ignitionrobotics/ign-transport/raw/master/docker/build.bash), [run.bash](https://github.com/ignitionrobotics/ign-transport/raw/master/docker/run.bash) and
0 commit comments