WMXZ-EU

Results 12 comments of WMXZ-EU

AFAIK, these issues could be part of Elm ChaN's ff.c code, which is taken without modifications. As noted, sd_CardReadBlocks reads only complete sectors and ignores the content

I look forward to updated SDIO (especially Teeny4.x and RP2040)

can you please give a hint where there is a malloc'ed FATFS struct? would help me to proceed.

Would you mind to provide a small example that uses a malloc'ed FATFS struct to be added to examples? Can then add a line in Readme to address issue and...

I believe that the following code should be correct ``` // get dividers from requested baud rate uint32_t aux=F_CPU; uint32_t ii=0,jj=1; uint32_t baudrate=kbaudrate*1000; while(aux/(16*(1

that is what one should expect. data are buffered an written in junks of 512 bytes (minimal sector size) try to flush after every write, then all times should be...

Cannot relate your comment to my suggestion. You are talking about times (millisecond). I was suggesting to replace in analyze_rms.h bool available(void) { return count>0;} by uint32_t available(void) {return count;}...

Why not replace the int16_t* pointer with void * ? This would allow easy allocations with other data types. The predefined AudioMemory macro could use int16_t. User could then easily...

@Blackaddr In order to know size of audio object data one could simply query sizeof(dataBuffers[0]), where visible, right? One should differentiate functionality in cores or in audio-library. cores should be...

Re endpoint 4. I indeed thought to have events also receive from the host. that is Teensy could send event to PC to request an action by PC. However, I...