!REDIRECT “https://docs.px4.io/master/ja/ros/mavros_custom_messages.html

Sending a Custom Message from MAVROS to PX4

Warning This article has been tested against:

  • Ubuntu: 18.04
  • ROS: Melodic
  • PX4 Firmware: 1.9.0

    However these steps are fairly general and so it should work with other distros/versions with little to no modifications.

MAVROS Installation

Follow Source Installation instructions from mavlink/mavros to install “ROS Kinetic”.

MAVROS

  1. We start by creating a new MAVROS plugin, in this example named keyboard_command.cpp (in workspace/src/mavros/mavros_extras/src/plugins) by using the code below:

    The code subscribes a ‘char’ message from ROS topic /mavros/keyboard_command/keyboard_sub and sends it as a MAVLink message.

    1. #include <mavros/mavros_plugin.h>
    2. #include <pluginlib/class_list_macros.h>
    3. #include <iostream>
    4. #include <std_msgs/Char.h>
    5. namespace mavros {
    6. namespace extra_plugins{
    7. class KeyboardCommandPlugin : public plugin::PluginBase {
    8. public:
    9. KeyboardCommandPlugin() : PluginBase(),
    10. nh("~keyboard_command")
    11. { };
    12. void initialize(UAS &uas_)
    13. {
    14. PluginBase::initialize(uas_);
    15. keyboard_sub = nh.subscribe("keyboard_sub", 10, &KeyboardCommandPlugin::keyboard_cb, this);
    16. };
    17. Subscriptions get_subscriptions()
    18. {
    19. return {/* RX disabled */ };
    20. }
    21. private:
    22. ros::NodeHandle nh;
    23. ros::Subscriber keyboard_sub;
    24. void keyboard_cb(const std_msgs::Char::ConstPtr &req)
    25. {
    26. std::cout << "Got Char : " << req->data << std::endl;
    27. UAS_FCU(m_uas)->send_message_ignore_drop(req->data);
    28. }
    29. };
    30. } // namespace extra_plugins
    31. } // namespace mavros
    32. PLUGINLIB_EXPORT_CLASS(mavros::extra_plugins::KeyboardCommandPlugin, mavros::plugin::PluginBase)
  2. Edit mavros_plugins.xml (in workspace/src/mavros/mavros_extras) and add the following lines:

    1. <class name="keyboard_command" type="mavros::extra_plugins::KeyboardCommandPlugin" base_class_type="mavros::plugin::PluginBase">
    2. <description>Accepts keyboard command.</description>
    3. </class>
  3. Edit CMakeLists.txt (in workspace/src/mavros/mavros_extras) and add the following line in add_library.

    1. add_library(
    2. ...
    3. src/plugins/keyboard_command.cpp
    4. )
  4. Inside common.xml in (workspace/src/mavlink/message_definitions/v1.0), copy the following lines to add your MAVLink message:

    1. ...
    2. <message id="229" name="KEY_COMMAND">
    3. <description>Keyboard char command.</description>
    4. <field type="char" name="command"> </field>
    5. </message>
    6. ...

PX4 Changes

  1. Inside common.xml (in PX4-Autopilot/mavlink/include/mavlink/v2.0/message_definitions), add your MAVLink message as following (same procedure as for MAVROS section above):

    1. ...
    2. <message id="229" name="KEY_COMMAND">
    3. <description>Keyboard char command.</description>
    4. <field type="char" name="command"> </field>
    5. </message>
    6. ...
  2. Remove common, standard directories in (PX4-Autopilot/mavlink/include/mavlink/v2.0).

    1. rm -r common
    2. rm -r standard
  3. Git clone “mavlink_generator” to any directory you want and execute it.

    1. git clone https://github.com/mavlink/mavlink mavlink-generator
    2. cd mavlink-generator
    3. python mavgenerate.py
  4. You will see a “MAVLink Generator” popup:

    • For XML, “Browse” to /PX4-Autopilot/mavlink/include/mavlink/v2.0/message_definitions/standard.xml.
    • For Out, “Browse” to /PX4-Autopilot/mavlink/include/mavlink/v2.0/.
    • Select Language C
    • Select Protocol 2.0
    • Check Validate

      Then, press Generate. You will see common, and standard directories created in /PX4-Autopilot/mavlink/include/mavlink/v2.0/.

  5. Make your own uORB message file key_command.msg in (PX4-Autopilot/msg). For this example the “key_command.msg” has only the code:

    1. char cmd

Then, in CMakeLists.txt (in PX4-Autopilot/msg), include

  1. set(
  2. ...
  3. key_command.msg
  4. )
  1. Edit mavlink_receiver.h (in PX4-Autopilot/src/modules/mavlink)

    1. ...
    2. #include <uORB/topics/key_command.h>
    3. ...
    4. class MavlinkReceiver
    5. {
    6. ...
    7. private:
    8. void handle_message_key_command(mavlink_message_t *msg);
    9. ...
    10. orb_advert_t _key_command_pub{nullptr};
    11. }
  2. Edit mavlink_receiver.cpp (in PX4-Autopilot/src/modules/mavlink). This is where PX4 receives the MAVLink message sent from ROS, and publishes it as a uORB topic.

    1. ...
    2. void MavlinkReceiver::handle_message(mavlink_message_t *msg)
    3. {
    4. ...
    5. case MAVLINK_MSG_ID_KEY_COMMAND:
    6. handle_message_key_command(msg);
    7. break;
    8. ...
    9. }
    10. ...
    11. void
    12. MavlinkReceiver::handle_message_key_command(mavlink_message_t *msg)
    13. {
    14. mavlink_key_command_t man;
    15. mavlink_msg_key_command_decode(msg, &man);
    16. struct key_command_s key = {};
    17. key.timestamp = hrt_absolute_time();
    18. key.cmd = man.command;
    19. if (_key_command_pub == nullptr) {
    20. _key_command_pub = orb_advertise(ORB_ID(key_command), &key);
    21. } else {
    22. orb_publish(ORB_ID(key_command), _key_command_pub, &key);
    23. }
    24. }
  3. Make your own uORB topic subscriber just like any example subscriber module. For this example lets create the model in (/PX4-Autopilot/src/modules/key_receiver). In this directory, create two files CMakeLists.txt, key_receiver.cpp. Each one looks like following.

    -CMakeLists.txt

    1. px4_add_module(
    2. MODULE modules__key_receiver
    3. MAIN key_receiver
    4. STACK_MAIN 2500
    5. STACK_MAX 4000
    6. SRCS
    7. key_receiver.cpp
    8. DEPENDS
    9. platforms__common
    10. )

-key_receiver.cpp

  1. #include <px4_config.h>
  2. #include <px4_tasks.h>
  3. #include <px4_posix.h>
  4. #include <unistd.h>
  5. #include <stdio.h>
  6. #include <poll.h>
  7. #include <string.h>
  8. #include <math.h>
  9. #include <uORB/uORB.h>
  10. #include <uORB/topics/key_command.h>
  11. extern "C" __EXPORT int key_receiver_main(int argc, char **argv);
  12. int key_receiver_main(int argc, char **argv)
  13. {
  14. int key_sub_fd = orb_subscribe(ORB_ID(key_command));
  15. orb_set_interval(key_sub_fd, 200); // limit the update rate to 200ms
  16. px4_pollfd_struct_t fds[1];
  17. fds[0].fd = key_sub_fd, fds[0].events = POLLIN;
  18. int error_counter = 0;
  19. while(true)
  20. {
  21. int poll_ret = px4_poll(fds, 1, 1000);
  22. if (poll_ret == 0)
  23. {
  24. PX4_ERR("Got no data within a second");
  25. }
  26. else if (poll_ret < 0)
  27. {
  28. if (error_counter < 10 || error_counter % 50 == 0)
  29. {
  30. PX4_ERR("ERROR return value from poll(): %d", poll_ret);
  31. }
  32. error_counter++;
  33. }
  34. else
  35. {
  36. if (fds[0].revents & POLLIN)
  37. {
  38. struct key_command_s input;
  39. orb_copy(ORB_ID(key_command), key_sub_fd, &input);
  40. PX4_INFO("Recieved Char : %c", input.cmd);
  41. }
  42. }
  43. }
  44. return 0;
  45. }

For a more detailed explanation please see the documentation for Writing your first application.

  1. Lastly add your module in the default.cmake file correspondent to your board in PX4-Autopilot/boards/. For example for the Pixhawk 4 add the following code in PX4-Autopilot/boards/px4/fmu-v5/default.cmake:

    1. MODULES
    2. ...
    3. key_receiver
    4. ...

Now you are ready to build all your work!

Building

Build for ROS

  1. In your workspace enter: catkin build.
  2. Beforehand, you have to set your “px4.launch” in (/workspace/src/mavros/mavros/launch). Edit “px4.launch” as below. If you are using USB to connect your computer with Pixhawk, you have to set “fcu_url” as shown below. But, if you are using CP2102 to connect your computer with Pixhawk, you have to replace “ttyACM0” with “ttyUSB0”. Modifying “gcs_url” is to connect your Pixhawk with UDP, because serial communication cannot accept MAVROS, and your nutshell connection simultaneously.

  3. Write your IP address at “xxx.xx.xxx.xxx”

    1. ...
    2. <arg name="fcu_url" default="/dev/ttyACM0:57600" />
    3. <arg name="gcs_url" default="udp://:14550@xxx.xx.xxx.xxx:14557" />
    4. ...

Build for PX4

  1. Build PX4-Autopilot and upload in the normal way.

    For example, to build for Pixhawk 4/FMUv5 execute the following command in the root of the PX4-Autopilot directory:

    1. make px4_fmu-v5_default upload

Running the Code

Next test if the MAVROS message is sent to PX4.

Running ROS

  1. In a terminal enter

    1. roslaunch mavros px4.launch
  2. In a second terminal run:

    1. rostopic pub -r 10 /mavros/keyboard_command/keyboard_sub std_msgs/Char 97

This means, publish 97 (‘a’ in ASCII) to ROS topic “/mavros/keyboard_command/keyboard_sub” in message type “std_msgs/Char”. “-r 10” means to publish continuously in “10Hz”.

Running PX4

  1. Enter the Pixhawk nutshell through UDP. Replace xxx.xx.xxx.xxx with your IP.

    1. cd PX4-Autopilot/Tools
    2. ./mavlink_shell.py xxx.xx.xxx.xxx:14557 --baudrate 57600
  2. After few seconds, press Enter a couple of times. You should see a prompt in the terminal as below:

    1. nsh>
    2. nsh>

Type “key_receiver”, to run your subscriber module.

  1. nsh> key_receiver

Check if it successfully receives a from your ROS topic.