This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-C6748: using stdio.h function fopen with fatfs from PDK

Part Number: PROCESSOR-SDK-C6748
Other Parts Discussed in Thread: SYSBIOS

this used to work when FATFS was in sysbios back in 6.45. we have upgraded to 6.76.3.1 (from the SDK) and we were able to get FATFS working using the FATFS API only

the issue is that we have to interface with a library that doesn't know about FATFS and uses the stdio function fopen, fclose, etc

in the previous build we were able to get it to work by specifying "fat:" at the beginning of the path so it would like like "fat:1:\\dir1\\file.txt" 

in using the new implementation i found that f_open works fine but i cannot figure out how to use fopen.