We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba1f3b commit 172833fCopy full SHA for 172833f
applications/rpc/rpc_app.c
@@ -201,6 +201,8 @@ void rpc_system_app_send_started(RpcAppSystem* rpc_app) {
201
furi_assert(session);
202
203
rpc_app->state_msg->content.app_state_response.state = PB_App_AppState_APP_STARTED;
204
+
205
+ FURI_LOG_D(TAG, "SendStarted");
206
rpc_send(session, rpc_app->state_msg);
207
}
208
@@ -209,9 +211,9 @@ void rpc_system_app_send_exited(RpcAppSystem* rpc_app) {
209
211
RpcSession* session = rpc_app->session;
210
212
213
- FURI_LOG_D(TAG, "SendExit");
-
214
rpc_app->state_msg->content.app_state_response.state = PB_App_AppState_APP_CLOSED;
215
216
+ FURI_LOG_D(TAG, "SendExit");
217
218
219
0 commit comments