Valerio De Benedetto

Results 43 comments of Valerio De Benedetto

@kpvnnov can you make a separate pull request with only the STM32 example? And maybe add a script/Makefile so user can build it easily? Thank you

Since you are on linux a good start would be checking out the linux code in the examples folder. Is there something in particular you'd like to know?

Merged in 7e4ef3e97e39664759e14bf993ff60d51dc8d850. Thank you

Hi, I don't think the NAT can cause any kind of alteration in the network packets. At first glance looks like maybe you are connecting to the wrong address or...

In general: - with timeout == 0, the function should try to read the data already available from the device and return immediately - with timeout < 0, the function...

The `read()` callback should not empty the hardware read buffer on purpose. It should try to read the number of bytes requested by the library, given the timeout constraints. Finally,...

Hi, basically infinite timeout == no timeout. The function should return only when the required bytes are read/written. The problem is that the doxygen html was not regenerated after updating...

At the moment the buffer index is set to the end of the PDU, so that `send_msg()` re-transmits the request as it was received, and it looks ok. What does...

Can you add a couple of lines of README that explain how to build/run the project? Thank you

This is definitely a bug. Fixed in b158a43d3c0cd1bdf39e4d3ca020024b341954a8. Thank you