Trouble with Jetson TX1 and roboRIO communication

173 views
Skip to first unread message

Eric Blau

unread,
Jan 20, 2017, 8:04:48 PM1/20/17
to ROSforLabview
Hi ROSforLabview folks,

My team and I are having trouble getting ROS for Labview on a roboRIO communicating with ROS Kinetic on an NVIDIA Jetson TX1.

We have tried running the master on both the roboRIO and on the Jetson with the source distribution on the roboRIO.

When the master is on the roboRIO, the Jetson can publish to the roboRIO but when the roboRIO publishes to the Jetson, the Jetson does not see any topics listed. Running "rostopic list" on the Jetson gives an error. On the roboRIO, the Jetson can be see connecting and asking for status (ROS definition).

When the master is run on the Jetson, the roboRIO recognizes the master on the Jetson's IP address. However, the Jetson cannot recognize any of the publishers or subscribers being hosted by the roboRIO and the roboRIO cannot get any information from the master (ROS definition is not updating).

We've verified network connectivity. Our roboRIO is using IP address 10.100.0.2 and the Jetson is using 10.100.0.35 with subnet mask 255.255.255.0. We have verified with TCP dump that network communication is working. The example project for the roboRIO is being run.

When we sniff traffic, we see the following when the Jetson subscribes to a topic on the roboRIO:

Jetson -> roboRIO

<?xml version='1.0'?>
<methodCall>
<methodName>registerSubscriber</methodName>
<params>
<param>
<value><string>/listener_8846_1484872373756</string></value>
</param>
<param>
<value><string>/chatter</string></value>
</param>
<param>
<value><string>std_msgs/String</string></value>
</param>
<param>
<value><string>http://10.100.0.35:54076/</string></value>
</param>
</params>
</methodCall>


roboRIO -> Jetson

<?xml version='1.0'?>
<methodResponse>. <params>.  <param>.   <value>.    <array>.     <data>.      <value><int>1</int>.      </value>.      <value><string>Registered [/listener_8846_1484872373756] as subscriber of [/chatter]</string>.      </value>.      <value>.       <array>.        <data>.         <value>.           <string>.             http://10.100.0.2:50310.           </string>.         </value>.         <value>.           <string>.             http://10.100.0.35:39032/.           </string>.         </value>.         <value>.           <string>.             http://10.100.0.35:51449/.           </string>.         </value>.        </data>.       </array>.      </value>.     </data>.    </array>.   </value>.  </param>. </params>.</methodResponse>


but we never see any data transmitted.

Thanks in advance for any guidance you can provide!

Regards,
Eric

Whitney Crooks

unread,
Jan 26, 2017, 12:02:33 PM1/26/17
to ros-sig-ro...@googlegroups.com
Hi Eric,

Sorry for the delay. I just wanted to double check that you downloaded ROS for LabVIEW from Github (vs VIPM). I assume did because you knew to deploy the source distribution.

Are you able to communicate between the roboRIO and roscore on a Linux machine? I'm not very familiar with the Jetson so I want to take a step back to something I know should work and start the debugging there. I'm going to see if I can get my hands on a Jetson or setup something similar in the meantime to try to reproduce your problem.

Thanks!
Whitney

--
You received this message because you are subscribed to the Google Groups "ROSforLabview" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ros-sig-rosforlabview+unsub...@googlegroups.com.
To post to this group, send email to ros-sig-rosforlabview@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Whitney Crooks
Ph.D. Candidate in Mechanical Engineering - Tufts University
STEM Leaders Fellow
IGERT Soft Material Robotics Associate
Research Assistant at the Center for Engineering Education and Outreach

Eric Blau

unread,
Jan 26, 2017, 1:25:22 PM1/26/17
to ros-sig-ro...@googlegroups.com
Hi Whitney,

Thank you for the response! We originally installed from VIPM, but we went back and uninstalled the library in VIPM and reinstalled from GitHub because we noticed there was a later update for roboRIO support not in the VIPM version that fixed some file and directory paths that had mixed / and \ characters.

We will try communication between the roboRIO and someone's Linux laptop to see how far we get, but the Jetson TX1's that we're using have Ubuntu 16.04 installed. It could be there is some difference with the ARM architecture on the TX1 so we'll try with someone's laptop to rule that in or out.

We were able to successfully communicate between a Linux VM and LabView running on another laptop. That worked regardless of whether the ROS master was running on Linux or LabView.

Thanks,
Eric

To unsubscribe from this group and stop receiving emails from it, send an email to ros-sig-rosforlabview+unsubscri...@googlegroups.com.

To post to this group, send email to ros-sig-rosforlabview@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Whitney Crooks
Ph.D. Candidate in Mechanical Engineering - Tufts University
STEM Leaders Fellow
IGERT Soft Material Robotics Associate
Research Assistant at the Center for Engineering Education and Outreach

--
You received this message because you are subscribed to a topic in the Google Groups "ROSforLabview" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ros-sig-rosforlabview/oB01cqqFQ4U/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ros-sig-rosforlabview+unsub...@googlegroups.com.

Eric Blau

unread,
Jan 27, 2017, 2:38:03 PM1/27/17
to ros-sig-ro...@googlegroups.com
Hi Whitney,

Here is the Python exception we see in a Linux VM when trying to communicate to the roboRIO:

File "/opt/ros/indigo/bin/rostopic", line 35, in <module>
   rostopic.rostopicmain()
 File "/opt/ros/indigo/lib/python2.7/dist-packages/rostopic/__init__.py", line 1922, in rostopicmain
   _rostopic_cmd_list(argv)
 File "/opt/ros/indigo/lib/python2.7/dist-packages/rostopic/__init__.py", line 1862, in _rostopic_cmd_list
   exitval = _rostopic_list(topic, verbose=options.verbose, subscribers_only=options.subscribers, publishers_only=options.publishers, group_by_host=options.hostname) or 0
 File "/opt/ros/indigo/lib/python2.7/dist-packages/rostopic/__init__.py", line 1080, in _rostopic_list
   pubs, subs, _ = state
ValueError: need more than 2 values to unpack


This is what we see when we try "rostopic list" when publishing a topic on the roboRIO with the roboRIO as master. The error path above shows indigo, but we've also tried with kinetic.

At one point we were able to get int64s to work, but we get this error every time with strings.

Thanks,
Eric

To unsubscribe from this group and all its topics, send an email to ros-sig-rosforlabview+unsubscri...@googlegroups.com.

mirgita frasheri

unread,
Mar 14, 2017, 11:36:08 AM3/14/17
to ROSforLabview, eb...@eblau.com
Hello Eric,

Did you manage to solve this issue?

Best,
M
To unsubscribe from this group and stop receiving emails from it, send an email to ros-sig-rosforlabview+unsub...@googlegroups.com.
To post to this group, send email to ros-sig-ro...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Whitney Crooks
Ph.D. Candidate in Mechanical Engineering - Tufts University
STEM Leaders Fellow
IGERT Soft Material Robotics Associate
Research Assistant at the Center for Engineering Education and Outreach

--
You received this message because you are subscribed to a topic in the Google Groups "ROSforLabview" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ros-sig-rosforlabview/oB01cqqFQ4U/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ros-sig-rosforlabview+unsub...@googlegroups.com.
To post to this group, send email to ros-sig-ro...@googlegroups.com.

Eric Blau

unread,
Sep 14, 2017, 2:09:35 PM9/14/17
to ROSforLabview

Hi Mirgita and Whitney,

Sorry for going silent on this issue for so long. It turned out we needed to specify MyIP. Once we did that, communication worked:


Regards,
Eric

Eric Blau

unread,
Sep 14, 2017, 2:11:10 PM9/14/17
to ROSforLabview
FYI, this was in savereadprefs.vi.

-Eric

Donkiss Zidane

unread,
Jun 3, 2024, 5:35:24 AM6/3/24
to ROSforLabview
We are a legitimate online psychedelics dispensary.
We ship Overnight Discreetly inside the United States, Europe, Canada and Australia.
Buy Psychedelic Drugs Online  For depression, anxiety, and post-traumatic stress disorder.
Magic Mushrooms, DMT, K2 Spice, LSD and more are available.
and much more.Visit Our Business Channel:https://t.me/trippyworld710


Buy Badder Online
https://t.me/trippyworld710/679?single
Buy Melts 2g Disposable Online 
https://t.me/trippyworld710/676
Candy For Sale 
https://t.me/trippyworld710/671
Buy Mad Labs 2g Disposables Online 
https://t.me/trippyworld710/649?single
Buy Mushrooms Online 
https://t.me/trippyworld710/648
Lsd Sheets For Sale Online 
https://t.me/trippyworld710/647
Buy Authentic Cake Wax Online 
https://t.me/trippyworld710/646
Buy DMT Powder Online 
https://t.me/trippyworld710/642
Buy Top Quality Moonrocks Online 
https://t.me/trippyworld710/642
Order Packwood x Runtz 1g Disposable 
https://t.me/trippyworld710/621?single
Buy Penis Envy Mushroom Online 
https://t.me/trippyworld710/617
Muha 2g Live Resin Disposables 
https://t.me/trippyworld710/595
Muha Meds Pre-Rolls For Sale 
https://t.me/trippyworld710/552?single
Buy Snow Ball Online 
https://t.me/trippyworld710/547
Muha Meds Carts For Sale 
https://t.me/trippyworld710/537
Buy DMT Cartridges Online 
https://t.me/trippyworld710/522
Ak47 For Sale 
https://t.me/trippyworld710/519?single
Cake 3g Disposable For Sale 
https://t.me/trippyworld710/519?single
Big Chief Cartridges 
https://t.me/trippyworld710/468?single
Packman 2g Disposable For Sale 
https://t.me/trippyworld710/453
Moonrocks For Sale 
https://t.me/trippyworld710/452
Buy Coke Online 
https://t.me/trippyworld710/448?single
Buy Hash Online 
https://t.me/trippyworld710/446
Buy Mushroom Chocolate bars Online 
https://t.me/trippyworld710/244
Buy Xanax Online 
https://t.me/trippyworld710/211
Mushroom Edibles For Sale 
https://t.me/trippyworld710/167
Clone Card For Sale Online 
https://t.me/trippyworld710/115
Acid Gel Tabs For Sale 
https://t.me/trippyworld710/58
https://t.me/trippyworld710/365?single
https://t.me/trippyworld710/363?single
https://t.me/trippyworld710/307
https://t.me/trippyworld710/306
https://t.me/trippyworld710/298
https://t.me/trippyworld710/241
https://t.me/trippyworld710/235?single
https://t.me/trippyworld710/231?single
https://t.me/trippyworld710/219?single
https://t.me/trippyworld710/215?single
https://t.me/trippyworld710/164
https://t.me/trippyworld710/98
https://t.me/trippyworld710/83?single
https://t.me/trippyworld710/63?single
https://t.me/trippyworld710/33
https://t.me/trippyworld710/30
https://t.me/trippyworld710/28
https://t.me/trippyworld710/6


Contact: (424)-250-0221
Telegram Usernames: @Jamesbrown71

Stones Thiago 77

unread,
May 14, 2026, 6:39:28 AMMay 14
to ROSforLabview

Buy dmt carts and get the experience you expect. DMT is now available in a DMT cartridge.

https://t.me/discreetpacktouchdowm

 A critical bit of clients report experiencing little mythical people when they are daydreaming on DMT pen they buy online. https://t.me/discreetpacktouchdowm

 DMT CARTS FOR SALE | ORDER DMT VAPE AND DMT CARTS FROM ENGLAND

https://t.me/discreetpacktouchdowm


DMT CARTS ONLINE – DMT CARTS FOR SALE ONLINE – DMT CARTS FOR SALE ONLINE – BUY DMT VAPECARTRIDGES

https://t.me/discreetpacktouchdowm


***-chemist/ DMT carts-1g DMT each (N,N-DMT) - we've also got 5-meo dmt carts for you.-Easy to use and disposable- Dmt cart and battery

https://t.me/discreetpacktouchdowm

a drug that can be combined with mixing agents to produce an E-liquid pen cartridgeDMT pens allow users more consistent control over dosage and hallucinogenic effectsThere is little to no data regarding the safety or potential health risks of an experience with DMT pens Drinking ayahuasca brewed from banisteriopsis caapi or smoking powder from a glass pipe isn’t the only way to have a psychedelic experience with the psychedelic drug DMT, also called the “spirit molecule”. It can also be mixed into E-liquid, casually referred to as “cart juice” with propylene glycol and vitamin E acetate, and inhaled using common vaporizers or E-cigarettes as DMT pens. https://t.me/discreetpacktouchdowm


What DMT pen/mods do I need to use this with?Any mod will do really. It just needs to be able to output a low enough power so that it doesn't fry the carts atomizer.Carts are meant for pen batteries but box mods can work fine, you just have to be careful not to give the cart to much power.Something can change the wattage or voltage in small increments is better for carts. Like 0.1 watt increments https://t.me/discreetpacktouchdowmcarts and get the experience you expect.

DMT is now available in a DM T cartridge. A critical bit of clients report experiencing little mythical ... https://t.me/discreetpacktouchdowm

Stones Thiago 77

unread,
May 16, 2026, 6:34:12 AMMay 16
to ROSforLabview

Stones Thiago 77

unread,
May 17, 2026, 5:15:57 PMMay 17
to ROSforLabview
Buy dmt carts and get the experience you expect. DMT is now available in a DMT cartridge.

Https://rentry.co/Amazingpacks

 A critical bit of clients report experiencing little mythical people when they are daydreaming on DMT pen they buy online. Https://rentry.co/Amazingpacks


 DMT CARTS FOR SALE | ORDER DMT VAPE AND DMT CARTS FROM ENGLAND

Https://rentry.co/Amazingpacks



DMT CARTS ONLINE – DMT CARTS FOR SALE ONLINE – DMT CARTS FOR SALE ONLINE – BUY DMT VAPECARTRIDGES

Https://rentry.co/Amazingpacks



***-chemist/ DMT carts-1g DMT each (N,N-DMT) - we've also got 5-meo dmt carts for you.-Easy to use and disposable- Dmt cart and battery

Https://rentry.co/Amazingpacks

a drug that can be combined with mixing agents to produce an E-liquid pen cartridgeDMT pens allow users more consistent control over dosage and hallucinogenic effectsThere is little to no data regarding the safety or potential health risks of an experience with DMT pens Drinking ayahuasca brewed from banisteriopsis caapi or smoking powder from a glass pipe isn’t the only way to have a psychedelic experience with the psychedelic drug DMT, also called the “spirit molecule”. It can also be mixed into E-liquid, casually referred to as “cart juice” with propylene glycol and vitamin E acetate, and inhaled using common vaporizers or E-cigarettes as DMT pens. Https://rentry.co/Amazingpacks


What DMT pen/mods do I need to use this with?Any mod will do really. It just needs to be able to output a low enough power so that it doesn't fry the carts atomizer.Carts are meant for pen batteries but box mods can work fine, you just have to be careful not to give the cart to much power.Something can change the wattage or voltage in small increments is better for carts. Like 0.1 watt incrementsHttps://rentry.co/Amazingpacks carts and get the experience you expect.

DMT is now available in a DM T cartridge. A critical bit of clients report experiencing little mythical ... Https://rentry.co/Amazingpacks
Reply all
Reply to author
Forward
0 new messages