hello mark..
i have another question.i want to create file in USB mass storage device.
so what i do In my Ksdk 1.3.0 example code of USB msdfsfat ?
here is the my main code of this example
int main(void)
#endif
{
hardware_init();
OSA_Init();
dbg_uart_init();
#if !(USE_RTOS)
APP_init();
#endif
OS_Task_create(Task_Start, NULL, 4L, 4000L, "task_start", NULL);
OSA_Start();
#if !defined(FSL_RTOS_MQX)
return 1;
#endif
}
so i ask you that in which place i add my function of create file?
thank you ..!!