1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 04:41:26 +04:00

Rpc: add desktop service. Desktop: refactor locking routine. (#2665)

* Rpc: add desktop service
* Protobuf: sync to latest release. Desktop: rewrite PIN locking, finalize locking API
* Desktop: cleanup code a little bit
This commit is contained in:
あく
2023-05-11 18:50:17 +09:00
committed by GitHub
parent 9862876f06
commit aa8a369e2a
22 changed files with 222 additions and 308 deletions

View File

@@ -57,6 +57,10 @@ static RpcSystemCallbacks rpc_systems[] = {
.alloc = rpc_system_property_alloc,
.free = NULL,
},
{
.alloc = rpc_desktop_alloc,
.free = rpc_desktop_free,
},
};
struct RpcSession {