Using f_write in a loop to write multiple chunks of data, doesn't seem to work
I'm using the following code: //100KB buffer uint8_t testBuffer[100000]; for(int i = 0; i < 100000; i++) { //Fill buffer testBuffer[i] = 'U'; } BSP_LED_On(LED_BLUE); for(int z = 0; z < 5; z...