RPC calls

This commit is contained in:
Johnathon Slightham
2026-02-10 23:08:41 -05:00
committed by Johnathon Slightham
parent 52ff24e649
commit 649669d598
12 changed files with 466 additions and 37 deletions

View File

@@ -50,7 +50,7 @@ CommunicationRouter::~CommunicationRouter() {
}
}
int CommunicationRouter::send_msg(char *buffer, const size_t length) const {
int CommunicationRouter::send_msg(uint8_t *buffer, const size_t length) const {
route(reinterpret_cast<uint8_t *>(buffer), length);
return 0;
}