From dfac318d16409cd7a6aa8681e09ec0fb781c92ee Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Wed, 24 Aug 2016 15:27:46 +0530 Subject: examples: rpmsg_str_echo: Fix minor print message bug Vybrid has A5 core and not A7. Fix this in the print message. Signed-off-by: Sanchayan Maity Signed-off-by: Stefan Agner --- examples/vf6xx_colibri_m4/demo_apps/rpmsg/str_echo/rpmsg_str_echo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vf6xx_colibri_m4/demo_apps/rpmsg/str_echo/rpmsg_str_echo.c b/examples/vf6xx_colibri_m4/demo_apps/rpmsg/str_echo/rpmsg_str_echo.c index 38c6c11..4cb0315 100644 --- a/examples/vf6xx_colibri_m4/demo_apps/rpmsg/str_echo/rpmsg_str_echo.c +++ b/examples/vf6xx_colibri_m4/demo_apps/rpmsg/str_echo/rpmsg_str_echo.c @@ -115,9 +115,9 @@ void StrEchoTask(void *pvParameters) * Take from next app string buffer */ if ((strlen(strVar[app_idx]) == 2) && (strVar[app_idx][0] == 0xd) && (strVar[app_idx][1] == 0xa)) - printf("Get New Line From A7 From Slot %d\r\n", app_idx); + printf("Get New Line From A5 From Slot %d\r\n", app_idx); else - printf("Get Message From A7 : \"%s\" [len : %d] from slot %d\r\n", strVar[app_idx], strlen(strVar[app_idx]), app_idx); + printf("Get Message From A5 : \"%s\" [len : %d] from slot %d\r\n", strVar[app_idx], strlen(strVar[app_idx]), app_idx); /* * echo back -- cgit v1.2.3