Hi All,
I'm starting my first project with BIOS/DSP and OMAP L138.
I have to use McASP. I want to start my program not from scratch, so I tried the example program mcasp\mcaspSampleSlave.pjt
Unfortunately this application program hangs in the function SIO_Create.
I have searched already in the forum for solutions, so I found the hint regarding Timer and TSK_sleep(). But this seems not to be the problem, I tried the Sleep function and it is working properly:
// code
TSK_sleep(5000); // is ok, function returns after 5 sec
/* open the I/O streams for receive */
inStream = SIO_create("/dioMcaspIN", SIO_INPUT, BUFSIZE, &sioAttrs); // no return from this function !!!
System:
Tool: CCS3
Target: LogicPD OMAPL138 SOM/Experimeter Kit
DSP/BIOS Version:5_41_02_14
only DSP is running
What is wrong?
Thanks in Advance
Richard