Add GPIO control through RPC (#1282)

* Add GPIO control through RPC
* Assets: sync protobuf to 0.10
* Assets: update protobuf to fixed v10

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Samuel Yvon
2022-07-04 11:32:06 -04:00
committed by GitHub
parent c495677eb5
commit 793501d62d
6 changed files with 444 additions and 2 deletions

View File

@@ -51,7 +51,10 @@ static RpcSystemCallbacks rpc_systems[] = {
.alloc = rpc_system_gui_alloc,
.free = rpc_system_gui_free,
},
};
{
.alloc = rpc_system_gpio_alloc,
.free = NULL,
}};
struct RpcSession {
Rpc* rpc;