diff options
author | Peter Johanson <[email protected]> | 2024-02-19 08:48:20 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-08-15 11:45:18 -0600 |
commit | feda96eb40f66440143e2dcfa26b5fcac6f38f33 (patch) | |
tree | beabac37cf220e3a64156a2503f9e61a23aa2d94 /docs/sidebars.js | |
parent | ea64fcaf71279d9a718265653c98d7c80a51d252 (diff) | |
download | zmk-feda96eb40f66440143e2dcfa26b5fcac6f38f33.tar.gz zmk-feda96eb40f66440143e2dcfa26b5fcac6f38f33.zip |
feat(studio): Initial RPC infrastructure and subsystems.
* UART and BLE/GATT transports for a protobuf encoded RPC
request/response protocol.
* Custom framing protocol is used to frame a give message.
* Requests/responses are divided into major "subsystems" which
handle requests and create response messages.
* Notification support, including mapping local events to RPC
notifications by a given subsystem.
* Meta responses for "no response" and "unlock needed".
* Initial basic lock state support in a new core section, and allow specifying
if a given RPC callback requires unlocked state or not.
* Add behavior subsystem with full metadata support and examples of
using callback to serialize a repeated field without extra stack space needed.
Co-authored-by: Cem Aksoylar <[email protected]>
Diffstat (limited to 'docs/sidebars.js')
-rw-r--r-- | docs/sidebars.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/sidebars.js b/docs/sidebars.js index 1c718e518c..d4c398b462 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -135,6 +135,7 @@ module.exports = { "development/tests", "development/usb-logging", "development/ide-integration", + "development/studio-rpc-protocol", { type: "category", label: "Guides", |