b85a50f912
* Lib: added nanopb * Hal rfid: fixed confused arguments * Lib: update makefile, include nanopb * Lib: remove nanopb * Lib: add nanopb as submodule * Assets: remove protobuf * Assets: add protobuf message definitions as submodule * WIP: [FL-1792] Add Protobuf RPC * WIP: RPC add ping * Add Ping * Fix Ping, Add (WIP) storage * Update submodule * ble-glue: add ptotobuf to ble * WIP: Add storage list test * revert applications.mk * Add Storage List command * ble-glue: fix fast updating rx charachteristic * ble serial: split long ble packets * Add Storage Read/Write/Mkdir/Delete * Disable tests * Rename Element -> File * Add md5sum, fix test leak * Regenerate Protobuf * Fix review comments * ble-glue: sync f7 target Co-authored-by: Albert Kharisov <albert@flipperdevices.com> Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
26 lines
847 B
C
26 lines
847 B
C
#pragma once
|
|
#include "rpc.h"
|
|
#include "pb.h"
|
|
#include "pb_decode.h"
|
|
#include "pb_encode.h"
|
|
#include "flipper.pb.h"
|
|
|
|
typedef void* (*RpcSystemAlloc)(Rpc*);
|
|
typedef void (*RpcSystemFree)(void*);
|
|
typedef void (*PBMessageHandler)(const PB_Main* msg_request, void* context);
|
|
|
|
typedef struct {
|
|
bool (*decode_submessage)(pb_istream_t* stream, const pb_field_t* field, void** arg);
|
|
PBMessageHandler message_handler;
|
|
void* context;
|
|
} RpcHandler;
|
|
|
|
void rpc_encode_and_send(Rpc* rpc, PB_Main* main_message);
|
|
void rpc_encode_and_send_empty(Rpc* rpc, uint32_t command_id, PB_CommandStatus status);
|
|
void rpc_add_handler(Rpc* rpc, pb_size_t message_tag, RpcHandler* handler);
|
|
|
|
void* rpc_system_status_alloc(Rpc* rpc);
|
|
void* rpc_system_storage_alloc(Rpc* rpc);
|
|
void rpc_system_storage_free(void* ctx);
|
|
void rpc_print_message(const PB_Main* message);
|