Other Parts Discussed in Thread: TIDEP-0092
Tool/software: Code Composer Studio
Hi all,
In the SRR demo while opening the LVDS output function, I can get the data to my PC through LVDS and DCA1000 with mmWave studio sw, but the max data I can get with only using 1 CBUFF user beffer is 3FFF * 2 = 32766Bytes
I learned that i can add user buffer(sessionCfg.u.swCfg.userBufferInfo[1] and [2]) to get more data since from the last few posts
But while trying to achieve this I am facing some problems, I'm not sure which step I am wrong, I just added another gSwUserBuffer and here are a part of my code:
volatile uint16_t gSwUserBuffer1[2048]
volatile uint16_t gSwUserBuffer2[2048]
sessionCfg.u.swCfg.userBufferInfo[0].size = sizeof(gSwUserBuffer1)/2;
sessionCfg.u.swCfg.userBufferInfo[0].address= (uint32_t*)&gSwUserBuffer1[0];
sessionCfg.u.swCfg.userBufferInfo[1].size = sizeof(gSwUserBuffer2)/2;
sessionCfg.u.swCfg.userBufferInfo[1].address= (uint32_t*)&gSwUserBuffer2[0];
I can get data with 1 gSwUserBuffer through LVDS while SRR demo is running, but while I added another gSwUserBuffer , I can't get any LVDS data output to my PC
I suppose there are some steps I've missed but I'm not quite sure, hope that you can help me figure this out