infn-ke
infn-ke
Invoking `mqtt_publish` without being in a connected state gives a negative return value. Passing this return value into `mqtt_error_str` causes a SEGV. ``` Program received signal SIGSEGV, Segmentation fault. 0x00007ffff756a35c...
Does rpmsg-lite have any plans to support message fragmentation? Currently the `rpmsg_lite_send` simply drops the message if the size exceeds `RL_BUFFER_PAYLOAD_SIZE`
What is the required shared memory size for rpmsg? Would the following formula correctly express the requirements? ```c 2 * (RL_BUFFER_COUNT * (RL_BUFFER_PAYLOAD_SIZE + 16) + vring_size(RL_BUFFER_COUNT, VRING_ALIGN)) ```
Is this fully implementation fully compliant with openamp as well as rpmsg in the kernel? Can you provide snippet for openamp and rpmsg-lite setup to test interop?
How can a client use two different transport channels? Looks like there is no context in the generated code, instead the global variable g_client is used to retrieve the transport...
Why is not the erpc header (`FramedTransport::Header`) serialized? E.g. do `htons` on the 16 bit members `m_messageSize` and `m_crc`.
The gNMI standard has a `qos` field that is used to mark the DSCP value of the gRPC stream. Does gRPC C++ API support setting DSCP on the stream? Doing...
When a client makes a POLL subscription to the target, what is the expected behavior from the target as a result of that? From reading the gNMI specification, there is...
Can you add some clarification how `suppress_redundant` shall work in conjunction with aggregation (e.g. `allow_aggregation`)? Section 3.5.1.5.2 describes the principles of the suppression, but is this valid only when updates...