-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed transmit instruction package #15
Comments
Hi! First of all, The notices like "transmit instruction packet" are printed out from the example source code, not from the linux. This may mean that the kernel on the jetson failed to write packet on the buffer. -m64 option is to force to build the source in 64bit configuration Anyway, did you tested in another SBC? If you have any others, please test with that at first. If there is no error, we should find out any other solution with jetson. I'm sorry for the inconvenience |
I have another jetson, but that is it as far as SBCs go. Is there anyway I can check if it wrote to the buffer or not? |
Dynamixel SDK uses int writePortLinux(int port_num, uint8_t *packet, int length)
{
return write(portData[port_num].socket_fd, packet, length);
} it returns the result of writing so you may check it :) |
Hello,
I keep having an error pop up when I attempt to run the examples in the DynamixelSDK file. I've go a crustcrawler ax-18a smart arm and I'm trying to connect to it with a USB2Dynamixel hooked up to a jetson TK1 board with ubuntu tegra on it. I've tried running the Ping example and it outputs this: Succeeded to open the port!
Succeeded to change the baudrate!
[TxRxResult] Failed transmit instruction packet!
[ID:001] ping Succeeded. Dynamixel model number : 0
I'm still pretty new with UNIX coding and so I'm not sure what the failed transmit instruction packet is or how to fix it. Also I'm not sure if its the problem or not but to get the make file to work I had to comment out the Format: -m64 line.
Thanks
The text was updated successfully, but these errors were encountered: