Tool/software: TI C/C++ Compiler
I have updated FatFs from 0.04b to 0.13b and have ported the code from sd_card_m3 example project into my own code but it's not working properly and I need to do some more testing, what I really need is code that I can put into my main program that is known good code that calls on the updated FatFs routines. Such code exists in the main.c program that's part of the LPC23xx folder in the sample code found here
and there are a bunch of example calls for things like disk_status that use the FatFs embedded String Functions such as xputs() and putdump() that are explained here
Rather than trying to rewrite all the example code, I'd like to be able to use the FatFs embedded string functions as-is but I'm not clear on how to direct the standard output to my UART.
My main program uses UARTStdioIntHandler and my UARTprintf() commands are working just fine. I'll need to add xprintf.c to my project and #include xprint.h to the c programs that call the xprintxxx functions but where/how do I tweak the code to tell the xprint functions to use my UART as output?