<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Is it possible to use uORB directly in a voxl module?]]></title><description><![CDATA[<p dir="auto">Hi ModalAI devs,</p>
<p dir="auto">I'm wondering if it's possible to subscribe to a uORB topic in a voxl module. I want to subscribe to the barometer sensor and there isn't an MPA server for this.</p>
<p dir="auto">The reason I ask is that when using the voxl-cross docker container I'm unsure which dependency is required to install to get access to the uORB headers etc.</p>
<p dir="auto">Thanks,<br />
Dan</p>
]]></description><link>https://forum.modalai.com/topic/1804/is-it-possible-to-use-uorb-directly-in-a-voxl-module</link><generator>RSS for Node</generator><lastBuildDate>Fri, 13 Mar 2026 13:44:47 GMT</lastBuildDate><atom:link href="https://forum.modalai.com/topic/1804.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Feb 2023 20:46:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Fri, 10 Feb 2023 09:04:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.modalai.com/uid/3">@Chad-Sweet</a></p>
<p dir="auto">Thanks Chad.<img src="https://forum.modalai.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=r4gp3i66d9g" class="not-responsive emoji emoji-android emoji--+1" title=":+1:" alt="👍" /></p>
]]></description><link>https://forum.modalai.com/post/8367</link><guid isPermaLink="true">https://forum.modalai.com/post/8367</guid><dc:creator><![CDATA[Dan]]></dc:creator><pubDate>Fri, 10 Feb 2023 09:04:48 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Fri, 10 Feb 2023 00:11:01 GMT]]></title><description><![CDATA[<p dir="auto">The PX4 flight control software</p>
]]></description><link>https://forum.modalai.com/post/8360</link><guid isPermaLink="true">https://forum.modalai.com/post/8360</guid><dc:creator><![CDATA[Chad Sweet]]></dc:creator><pubDate>Fri, 10 Feb 2023 00:11:01 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 21:55:10 GMT]]></title><description><![CDATA[<p dir="auto">@Matt-Turi</p>
<p dir="auto">Apologies. Final question for now. Who is the producer of the mavlink message for the barometer data?</p>
]]></description><link>https://forum.modalai.com/post/8353</link><guid isPermaLink="true">https://forum.modalai.com/post/8353</guid><dc:creator><![CDATA[Dan]]></dc:creator><pubDate>Thu, 09 Feb 2023 21:55:10 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 21:41:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.modalai.com/uid/14">@Eric-Katzfey</a></p>
<p dir="auto">No problem. I was wondering if I could do that bridging myself by subscribing to the uORB topic <code>sensor_baro</code> and then publishing onto a barometer MPA server but wasn't sure if it was possibly to subscribe to uORB topics in the voxl SDK.</p>
<p dir="auto">@Matt-Turi</p>
<p dir="auto">Thanks for the clarification. I'll take a look at the px4-listener parsing too.</p>
]]></description><link>https://forum.modalai.com/post/8352</link><guid isPermaLink="true">https://forum.modalai.com/post/8352</guid><dc:creator><![CDATA[Dan]]></dc:creator><pubDate>Thu, 09 Feb 2023 21:41:51 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 21:15:17 GMT]]></title><description><![CDATA[<p dir="auto">There is a mavlink message you can parse for barometer data, that is the code example I sent above. In that file as well, there is an example of calling px4-listener programmatically and parsing its output - see <a href="https://gitlab.com/voxl-public/voxl-sdk/services/voxl-flow-server/-/blob/master/src/main.cpp#L936" rel="nofollow ugc">here</a></p>
]]></description><link>https://forum.modalai.com/post/8350</link><guid isPermaLink="true">https://forum.modalai.com/post/8350</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Thu, 09 Feb 2023 21:15:17 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 21:15:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.modalai.com/uid/1308">@Dan</a> There is no uorb to pipe bridge so not really possible. But you can run the system command px4-listener and parse the output of it. Or if what you really need is something in a Mavlink message then you can go the route Matt suggested.</p>
]]></description><link>https://forum.modalai.com/post/8349</link><guid isPermaLink="true">https://forum.modalai.com/post/8349</guid><dc:creator><![CDATA[Eric Katzfey]]></dc:creator><pubDate>Thu, 09 Feb 2023 21:15:05 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 21:02:05 GMT]]></title><description><![CDATA[<p dir="auto">@Matt-Turi</p>
<p dir="auto">Hi Matt,</p>
<p dir="auto">Thanks for the quick reply and thanks for the example that's super useful.</p>
<p dir="auto">Just to clarify what you're saying. From my understanding when I do <code>uorb top</code> the topic name <code>sensor_baro</code> is available and I can call <code>px4-listener sensor_baro</code> to get an update from what I believe to be a uorb message? Are you saying that there are mavlink messages also published that will give me the same information and I can use something similar to your example to then create a barometer MPA server?</p>
]]></description><link>https://forum.modalai.com/post/8347</link><guid isPermaLink="true">https://forum.modalai.com/post/8347</guid><dc:creator><![CDATA[Dan]]></dc:creator><pubDate>Thu, 09 Feb 2023 21:02:05 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to use uORB directly in a voxl module? on Thu, 09 Feb 2023 20:55:48 GMT]]></title><description><![CDATA[<p dir="auto">Hi Dan,</p>
<p dir="auto">You can directly subscribe to the mavlink output using the <code>mavlink_to_px4</code> pipe and check for messages of type <code>MAVLINK_MSG_ID_ALTITUDE</code> to receive barometer updates in an MPA server.</p>
<p dir="auto">See <a href="https://gitlab.com/voxl-public/voxl-sdk/services/voxl-flow-server/-/blob/master/src/main.cpp#L1022" rel="nofollow ugc">here</a> for a code example.</p>
]]></description><link>https://forum.modalai.com/post/8346</link><guid isPermaLink="true">https://forum.modalai.com/post/8346</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Thu, 09 Feb 2023 20:55:48 GMT</pubDate></item></channel></rss>