You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In devices that there is difference between memory regions, it may make life harder
Describe the solution you'd like
for read:
read first 4 bytes to the message buffer, (and with the curser read from the buffer?)
for write:
In the autogenerated code, after reset the cursor, do dummy write of 4 bytes with the cursor. In FramedTransport::send write to the first 4 bytes the header (if want with the cursor, need to fix first #283 ) and send the whole message in one chunk Describe alternatives you've considered
can do just the write to the buffer in the way I described. Steps you didn't forgot to do
I checked if there is no related issue opened/closed.
I checked that there doesn't exist opened PR which is solving this issue.
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently there is difference between the message header and the message body, while the message header is read/write from the stack:
erpc/erpc_c/infra/erpc_framed_transport.cpp
Line 54 in 932a8aa
erpc/erpc_c/infra/erpc_framed_transport.cpp
Line 115 in 932a8aa
the problems with it are:
Describe the solution you'd like
for read:
read first 4 bytes to the message buffer, (and with the curser read from the buffer?)
for write:
In the autogenerated code, after reset the cursor, do dummy write of 4 bytes with the cursor. In FramedTransport::send write to the first 4 bytes the header (if want with the cursor, need to fix first #283 ) and send the whole message in one chunk
Describe alternatives you've considered
can do just the write to the buffer in the way I described.
Steps you didn't forgot to do
Additional context
The text was updated successfully, but these errors were encountered: