Dusan Cervenka
Dusan Cervenka
Hi @kikass13 personally i did changes in eRPC framework to support nonblocking feature (but enterely different). Didn't have time to upstream. I want wait until others PRs will be accepted...
Hi @kikass13 , i didn't saw other PRs merged so far so i am postponing of creation new PRs as they are connected to existing one. @MichalPrincNXP do you have...
@MichalPrincNXP https://github.com/EmbeddedRPC/erpc/pulls/Hadatko
Hi, sa i mentioned i didn't create new PR as old PR were not merged. Now when the PRs are merged (recently) i can create new PR related to this...
Hi, there can be multiple resource independent servers run. Just do not use default setup implementation for server. You can get inspiration from there to create as many servers as...
I am thinking that we can change implementation of these functions to add to each function server id. And define in erpc_config the amount of servers. This way we can...
Hi. I think we have only complicated way to achieve this. User can create g_client1 g_client2... and before rpc call change g_client (g_client=g_client1, g_client=g_client2). Or have two transport layers and...
Hi @infn-ke , Actually server is different case. You can have several server instances each with different transport layer. You can run every server in different thread. Or using poll...
I would do it in two step. First support multiple clients in C++ similar way as we do in Python. Then we can discuss if we need support C workround....
Hi @burgerkingorama, @retain was created for special usecases when somebody don't want free allocated structures at all. E.g. he can pass allocated structure to global variabel for using it during...