erpc icon indicating copy to clipboard operation
erpc copied to clipboard

Embedded RPC

Results 144 erpc issues
Sort by recently updated
recently updated
newest added

The c implementation of erpc has `ERPC_DEFAULT_BUFFER_SIZE` defining a size limit for the erpc messages. Are there any similar limitation for the python implementation?

question

## Description of problem: gpio_poll() hangs master Using [gpio_poll()](https://github.com/EmbeddedRPC/erpc/blob/0fb3e34cae1e03f409df2b2c3e2e7ecbcda97963/erpc_c/port/erpc_sysgpio.c#L231) as that ``` void erpc::spiWaitForSlaveReadyGpio(int gpioHandle) { for (;;) { if (gpio_poll(gpioHandle, -1)) { break; } } } ``` hangs master....

bug

## Is your feature request related to a problem? Please describe Currently, in server/client setup there is member and initialization of CRC, but it used just in framed transport. Even...

enhancement

## If you didn't find answer in existing open/closed issues you may ask here In static mbf setup, in case that there is no more buffers assert is called: https://github.com/EmbeddedRPC/erpc/blob/5c2c6b76cf29ac124aa6a4f4cff6fae89f988983/erpc_c/setup/erpc_setup_mbf_static.cpp#L70...

question