Other Parts Discussed in Thread: SYSCONFIG
Hi, I'm using AM64 GP Board with running three applications.
The one application is on A53, which just print "Hello World" through UART0 every a second.
Another application is on R50-0 which is an hsr mii example of SDK.
Other is on R51-1 which is some modified by me and used an lwip-cpsw example of SDK.
The question is "How to solve the EEPROM in parallel accessed by R50-0 and R51-1"
Now in debugging, R51-1 executes step by step after R50-0 is running, then R51-1 core is waiting for infinite time by semaphoreP_pend(&object->transferComplete, transaction->timeout) at line 1764 of i2c_v0.c
It is going to read MAC address of cpsw but can't go next step.
Instead, in debugging, R50-0 executes step by step after R51-1 is running, then R50-0 also is waiting forever by semaphoreP_pend at same upper.
Please let me know how to resolve this situation. Thanks.