View Issue Details

IDProjectCategoryView StatusLast Update
0006185FSFreeRTOSBSPGeneralpublic2024-03-14 11:58
Reportergerbach Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Product Versionfreertos_fsimx7ulp-V2019.02 
Target Versionfreertos_fsimx6sx-next 
Summary0006185: pingpong freertos example does sometimes not trigger with modprobe
DescriptionSometimes the pingpong freertos example does not start when running
modprobe imx_rpmsg_pingpong.

When running
modprobe -r imx_rpmsg_pingpong
modprobe imx_rpmsg_pingpong.

it continues running, so it seems the hello message is getting lost.

the bare metal example seems to work fine

Activities

gerbach

2024-03-14 11:58

manager   ~0004821

This seems to fix the issue
    /* Receive Hello-message */
-- rpmsg_queue_recv(my_rpmsg, my_queue, (unsigned long *)&remote_addr, helloMsg, sizeof(THE_MESSAGE), NULL,
-- RL_BLOCK);
++ rpmsg_queue_recv(my_rpmsg, my_queue, (unsigned long *)&remote_addr, helloMsg, sizeof(helloMsg), NULL,
++ RL_BLOCK);