Tool/software: TI-RTOS
Hi,
I am developing USB-Stick-Update bootloader and the example code is working well.
I try to change the USB_UPDATE_FILENAME and the length of the base name over 8.
But it not working.
I modified the part as below
the USB_UPDATE_FILENAME "test12345BIN" // 9.3
SimpleFsOpen()
{
if(!strncmp(pDirEntry->pcFileName, pcName83, 12))
{
}
}
And the define tDirEntry
char pcFileName[12];//11 ->12
I need to modify other let it work or the length of filename must be fixed 8.3?
Thanks & Regards
Arthur