From 288a0d108238cd7580cfd0302202d9b8b6d30c30 Mon Sep 17 00:00:00 2001 From: Jakub Zymelka Date: Tue, 25 Feb 2025 13:47:44 +0100 Subject: [PATCH] applications: sdp: mspi: fix for ipc bound problem Increase delay to wait a little bit more for IPC service to be ready on APP side. Signed-off-by: Jakub Zymelka --- applications/sdp/mspi/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/sdp/mspi/src/main.c b/applications/sdp/mspi/src/main.c index ba33a841e4c0..27a5da1d9283 100644 --- a/applications/sdp/mspi/src/main.c +++ b/applications/sdp/mspi/src/main.c @@ -456,7 +456,7 @@ static int backend_init(void) #if !defined(CONFIG_SYS_CLOCK_EXISTS) /* Wait a little bit for IPC service to be ready on APP side. */ - while (delay < 1000) { + while (delay < 5000) { delay++; } #endif