erpc
erpc copied to clipboard
Embedded RPC
Platform : MacOS 10.14.5 Mojave Steps to reproduce $ git clone erpc $ cd erpc/erpcsniffer $ make Error : Generating erpcgen/src/erpcgen_parser.y /Users/sramnath/erpc/erpcgen/src/erpcgen_parser.y:21.1-14: warning: deprecated directive: ‘%error-verbose’, use ‘%define parse.error verbose’...
We can consider, using this module https://github.com/fox-it/dissect.cstruct, replace shim code for structs (later unions, ...) on python side. They are preparing new version of module which i hope will support...
Hi, I am pretty new to RPC/RPMsg and was wondering if you had any guidance on how to get a simple example setup on Linux? I just wanted to send...
We're using `@retain` on a list output parameter. IDL: ``` struct result { ... } interface test { transferResults(out list @retain) -> void } ``` In the server implementation we...
Hi, I'd like to use eRPC for my current project, since I have a good experience of using it in past. I have an embedded system (Cortex M4 MCU) and...
Hi, I see that in `tcp_transport.cpp`, if the connection is closed by the client, TCPTransport::close() brings down the server thread by setting `m_runServer = false;` Please correct me if I'm...
With `basic_codec.py` the length parameter is lost if for some reason the connection breaks and the full response isn't in the buffer. The code in question is: ``` def read_binary(self):...
The transfer of the frame is done primitively, for the serial device will not do !!! We need to introduce something like HDLC.
**Is your feature request related to a problem? Please describe.** It is likely possible that i will implement simple mqtt client in near future. **Describe the solution you'd like** **Describe...
remove defining parse.error which make errors while compiling erpcgen.exe # Pull request **Choose Correct** - [X] bug - [ ] feature **Describe the pull request** see issue #314 **To Reproduce**...