mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-19 17:49:06 +08:00
Move PX4 Guide source into /docs (#24490)
* Add vitepress tree * Update existing workflows so they dont trigger on changes in the docs path * Add nojekyll, package.json, LICENCE etc * Add crowdin docs upload/download scripts * Add docs flaw checker workflows * Used docs prefix for docs workflows * Crowdin obvious fixes * ci: docs move to self hosted runner runs on a beefy server for faster builds Signed-off-by: Ramon Roche <mrpollo@gmail.com> * ci: don't run build action for docs or ci changes Signed-off-by: Ramon Roche <mrpollo@gmail.com> * ci: update runners Signed-off-by: Ramon Roche <mrpollo@gmail.com> * Add docs/en * Add docs assets and scripts * Fix up editlinks to point to PX4 sources * Download just the translations that are supported * Add translation sources for zh, uk, ko * Update latest tranlsation and uorb graphs * update vitepress to latest --------- Signed-off-by: Ramon Roche <mrpollo@gmail.com> Co-authored-by: Ramon Roche <mrpollo@gmail.com>
This commit is contained in:
parent
8e6d2ebe4a
commit
88d623bedb
110
docs/en/debug/debug_values.md
Normal file
110
docs/en/debug/debug_values.md
Normal file
@ -0,0 +1,110 @@
|
||||
# Send and Receive Debug Values
|
||||
|
||||
It is often necessary during software development to output individual important numbers.
|
||||
This is where the generic `NAMED_VALUE_FLOAT`, `DEBUG` and `DEBUG_VECT` packets of MAVLink come in.
|
||||
|
||||
## Mapping between MAVLink Debug Messages and uORB Topics
|
||||
|
||||
MAVLink debug messages are translated to/from uORB topics.
|
||||
In order to send or receive a MAVLink debug message, you have to respectively publish or subscribe to the corresponding topic.
|
||||
Here is a table that summarizes the mapping between MAVLink debug messages and uORB topics:
|
||||
|
||||
| MAVLink message | uORB topic |
|
||||
| ----------------- | --------------- |
|
||||
| NAMED_VALUE_FLOAT | debug_key_value |
|
||||
| DEBUG | debug_value |
|
||||
| DEBUG_VECT | debug_vect |
|
||||
|
||||
## Tutorial: Send String / Float Pairs
|
||||
|
||||
This tutorial shows how to send the MAVLink message `NAMED_VALUE_FLOAT` using the associated uORB topic `debug_key_value`.
|
||||
|
||||
The code for this tutorial is available here:
|
||||
|
||||
- [Debug Tutorial Code](https://github.com/PX4/PX4-Autopilot/blob/main/src/examples/px4_mavlink_debug/px4_mavlink_debug.cpp)
|
||||
- [Enable the tutorial app](https://github.com/PX4/PX4-Autopilot/blob/main/boards/px4/fmu-v5/default.px4board) by ensuring the MAVLink debug app (**CONFIG_EXAMPLES_PX4_MAVLINK_DEBUG**) is in the config of your board and set set to 'y'.
|
||||
|
||||
All required to set up a debug publication is this code snippet.
|
||||
First add the header file:
|
||||
|
||||
```C
|
||||
#include <uORB/uORB.h>
|
||||
#include <uORB/topics/debug_key_value.h>
|
||||
#include <string.h>
|
||||
```
|
||||
|
||||
Then advertise the debug value topic (one advertisement for different published names is sufficient).
|
||||
Put this in front of your main loop:
|
||||
|
||||
```C
|
||||
/* advertise debug value */
|
||||
struct debug_key_value_s dbg;
|
||||
strncpy(dbg.key, "velx", sizeof(dbg.key));
|
||||
dbg.value = 0.0f;
|
||||
orb_advert_t pub_dbg = orb_advertise(ORB_ID(debug_key_value), &dbg);
|
||||
```
|
||||
|
||||
And sending in the main loop is even simpler:
|
||||
|
||||
```C
|
||||
dbg.value = position[0];
|
||||
orb_publish(ORB_ID(debug_key_value), pub_dbg, &dbg);
|
||||
```
|
||||
|
||||
:::warning
|
||||
Multiple debug messages must have enough time between their respective publishings for Mavlink to process them.
|
||||
This means that either the code must wait between publishing multiple debug messages, or alternate the messages on each function call iteration.
|
||||
:::
|
||||
|
||||
The result in QGroundControl then looks like this on the real-time plot:
|
||||
|
||||

|
||||
|
||||
## Tutorial: Receive String / Float Pairs
|
||||
|
||||
The following code snippets show how to receive the `velx` debug variable that was sent in the previous tutorial.
|
||||
|
||||
First, subscribe to the topic `debug_key_value`:
|
||||
|
||||
```C
|
||||
#include <poll.h>
|
||||
#include <uORB/topics/debug_key_value.h>
|
||||
|
||||
int debug_sub_fd = orb_subscribe(ORB_ID(debug_key_value));
|
||||
[...]
|
||||
```
|
||||
|
||||
Then poll on the topic:
|
||||
|
||||
```C
|
||||
[...]
|
||||
/* one could wait for multiple topics with this technique, just using one here */
|
||||
px4_pollfd_struct_t fds[] = {
|
||||
{ .fd = debug_sub_fd, .events = POLLIN },
|
||||
};
|
||||
|
||||
while (true) {
|
||||
/* wait for debug_key_value for 1000 ms (1 second) */
|
||||
int poll_ret = px4_poll(fds, 1, 1000);
|
||||
|
||||
[...]
|
||||
```
|
||||
|
||||
When a new message is available on the `debug_key_value` topic, do not forget to filter it based on its key attribute in order to discard the messages with key different than `velx`:
|
||||
|
||||
```C
|
||||
[...]
|
||||
if (fds[0].revents & POLLIN) {
|
||||
/* obtained data for the first file descriptor */
|
||||
struct debug_key_value_s dbg;
|
||||
|
||||
/* copy data into local buffer */
|
||||
orb_copy(ORB_ID(debug_key_value), debug_sub_fd, &dbg);
|
||||
|
||||
/* filter message based on its key attribute */
|
||||
if (strcmp(_sub_debug_vect.get().key, "velx") == 0) {
|
||||
PX4_INFO("velx:\t%8.4f", dbg.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user