Skip to content

Commit

Permalink
Format Sources
Browse files Browse the repository at this point in the history
  • Loading branch information
skotopes committed Sep 6, 2024
1 parent d96b22a commit f31f563
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion applications/debug/rpc_debug_app/rpc_debug_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ static void rpc_debug_app_rpc_command_callback(const RpcAppSystemEvent* event, v
furi_assert(event->data.type == RpcAppSystemEventDataTypeBytes);

rpc_debug_app_format_hex(
event->data.bytes.ptr, event->data.bytes.size, app->text_store, sizeof(app->text_store));
event->data.bytes.ptr,
event->data.bytes.size,
app->text_store,
sizeof(app->text_store));

view_dispatcher_send_custom_event(
app->view_dispatcher, RpcDebugAppCustomEventRpcDataExchange);
Expand Down

0 comments on commit f31f563

Please sign in to comment.