I am using TI-RTOS with a CC3100 BoosterPack and Tiva C LaunchPad (TM4C123) and have successfully used most of the SimpleLink Host APIs in my application. However I have been unable to use the Fs module.
When ever I run the below piece of code I get a DMA error code: 1 (Error is located in the EK_TM4C123GXL file)
/* File Doesn't exit create a new of 63 KB file */ iRetVal = sl_FsOpen((unsigned char *)USER_FILE_NAME, FS_MODE_OPEN_CREATE(65536,_FS_FILE_OPEN_FLAG_COMMIT|_FS_FILE_PUBLIC_WRITE), &ulToken, &lFileHandle);
I have been successfully able to use the Fs module in a bare metal example, that does not use TI-RTOS.
In my debugging, it looked like something was happening within the Ti-RTOS DMA libraries. Though I was unable to pin point after a day of debugging.
Has the Fs module for the CC3100 been confirmed to function with TI-RTOS?
Glenn.