MEB Troubleshooting
Port
First, double check that everything is connected to the Jetson.
If everything is actually connected, then MEB has a different name than what is expected. We need to determine this name and use it instead.
Important
You should inform the software team as soon as possible if the device name format has actually changed. This is unexpected and needs to be investigated.
To determine the name, run the following command:
ls /dev/serial/by-id/ | grep -i Texas
This command lists files in the /dev/serial/by-id/
folder that contain the word Texas (case insensitive) in their name. It should output 2 file names. If it does not output anything, then MEB is actually not connected to the Jetson. The output should look similar to this:
/dev/serial/by-id/usb-Texas_Instruments_MSP_Tools_Driver_B20A826e14002300-if00
/dev/serial/by-id/usb-Texas_Instruments_MSP_Tools_Driver_B20A826e14002300-if02
Now, we will take these resulting files names and determine which one is the correct one.
Starting with the first file name, do the following:
- Run the following commands, replacing FILE_NAME with the file name we are testing:
export PORT=$(realpath FILE_NAME) echo $PORT
- Begin following the steps in MEB Communication & Voltage Monitor
- If you encounter no errors, you have selected the correct one and can continue
- If you encounter any errors, return here and start from step 1 using the second file name
- If you encounter errors with both file names, reboot the robot and try again
- If the issue persist, stop and ask for assistance.