Skip to content
Snippets Groups Projects
Commit ffaa8a65 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Solved a bug when receiving more than 256 bytes: the number of bytes received...

Solved a bug when receiving more than 256 bytes: the number of bytes received variable was an 8 bit integer.
parent 1a597863
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ typedef struct TDynamixelSlave
* \brief
*
*/
unsigned char received_bytes;
unsigned short int received_bytes;
/**
* \brief
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment