Skip to content

Commit e5ee3ed

Browse files
jonathannilsencarlescufi
authored andcommitted
bluetooth: rpc: move serialization SYS_INIT to APPLICATION level
Having it at POST_KERNEL level appears to cause issues on nrf54h20, possibly due to the application core now starting the radio core in soc_late_init_hook() which is after POST_KERNEL. Changing the level to APPLICATION makes it so the radio core has been booted when this hook executes. Signed-off-by: Jonathan Nilsen <[email protected]>
1 parent 81cbac7 commit e5ee3ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/rpc/common/bt_rpc_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static int serialization_init(void)
5454
return 0;
5555
}
5656

57-
SYS_INIT(serialization_init, POST_KERNEL, CONFIG_APPLICATION_INIT_PRIORITY);
57+
SYS_INIT(serialization_init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
5858
#endif /* CONFIG_BT_RPC_INITIALIZE_NRF_RPC */
5959

6060
enum {

0 commit comments

Comments
 (0)