erpc
erpc copied to clipboard
Embedded RPC
Hi, I'm using ERPC with CDC ACM (Connection between x64 and microcontroller) and I would love to disable CRC checking because I think USB does that already for me and...
Hello, I am experiencing an occasional hangup with my application. I am using the Windows Serial transport on the Client side and my own USB-CDC port on the Server side....
This library may be used https://docs.python.org/3/howto/logging.html
Hello. I have problems with compilling in MINGW. When I try to "make install" next error appears: ``` erpc/erpc_c/port/erpc_serial.cpp:210:19: error: unused variable 'bread' [-Werror=unused-variable] unsigned long bread = 0;erpc/erpc_c/port/erpc_serial.cpp:309:70: error:...
There was a bug in that file(#182 ). I am not sure if this file is original or it was modified in our repositories (should be easy to find out,...
Why the kErpcStatus_Timeout check is needed for releasing the semaphore in case of any error during erpc call in TransportArbitrator::receive() function? Because I don't see any function returning kErpcStatus_Timeout value....
We have a SRAM which cannot do byte access, every read/write needs to be 4 bytes. Therefore it would be great if erpc could pad msgs to a multiple of...
In https://github.com/EmbeddedRPC/erpc/wiki/eRPC-infrastructure is says: ``` The simple server contains 2 functions for message processing: run and poll. The poll function only supports the RPMsg transport layer. ``` I am speculating...
Why is not the erpc header (`FramedTransport::Header`) serialized? E.g. do `htons` on the 16 bit members `m_messageSize` and `m_crc`.
Hi, Is it possible to recover gracefully from an erpc error during one of the remote procedures calls ? currently the server and client are stuck. /Tzvika