Open razvanphp opened 1 month ago
This repo is for Arduino Python libraries, it has nothing to do with this issue, so I'm transferring here. If strings can't be packed/unpacked try using std::vector<byte>
. You can also read/write to raw channel, see the pinpong example RPC.write(&buf[0], sizeof(buf));
where buf is uint8_t array.
I have a rather basic need to pass strings in between the cores via RPC, which actually represent a JSON.
I know those changes are probably meant in other repositories, but the use-case is in the context of
RPC
.and
It compiles with
std::string
tho.