There are two C6678 DSPs on my board . I am trying to implement C6678_A sending data to C6678_B through ethernet interface.
I consulted an example project located at pdk_C6678_1_0_0_21\packages\ti \ drv \ exampleprojects\ PA_emacExample_exampleProject.
Here are my questions.
1. In the example project, when the function Sendpacket() is executed, interrupt service handler(ISR)named Cpsw_RxISR() is called automatically.
How is this achieved?
I reffered to the .cfg file but found nothing.
2. In my case,When the C6678_A finishes executing the function SendPacket() , it should send an interrupt to C6678_B. Then C6678_B start call the
Cpsw_RxISR() automatilly. To achieve this, how to modify the codes?
3. Is there any document helping user to familiar with .cfg file?Every time I look up the .cfg file , i can get little information.
Supplement : C6678_A and C6678_B runs different projects. C6678_A does initialization and send data only . C6678_B does initialization and receive
data only. Both the projects are based on PA_emacExample_exampleProject.
Both SendPacket() and Cpsw_RxISR() are located at cppi_qmss_mgmt.c.
I hope someone coule help me . Thank you in advance.