USB AUDIO converts IIS to another chip

Designing hardware and software for systems that use the VS1010 MP3 Audio DSP Microcontroller.
Post Reply
winwan
Senior User
Posts: 86
Joined: Fri 2014-07-04 15:51

USB AUDIO converts IIS to another chip

Post by winwan »

I have a product requirement, USB AUDIO converts IIS to another chip, the second chip converts IIS to WAV buffer files, and then connects to the outside through the USB DISK interface.
*.WAV buffer file is fixed length, USB AUDIO decoded IIS data constantly updated cycle, external USB in the way of FIFO, cycle read *.WAV buffer file for recording,
1- The first chip (USB AUDIO) is easy to implement,
2- The second chip first builds a USB storage disk and then cycles IIS into WAV virtual files.
To achieve the function of 2, what way can be well implemented.
Image
Attachments
DVS1010D.png
DVS1010D.png (30.46 KiB) Viewed 75 times
Hannu
VLSI Staff
Posts: 546
Joined: Mon 2016-05-30 11:54
Location: Finland
Contact:

Re: USB AUDIO converts IIS to another chip

Post by Hannu »

Mass storage devices aren't very polite. You can give them your data fast and then at some point those things say "no thanks, please wait" And while you are waiting for stuff, you get more data steadily. And then you need some buffer which would need to be quite large and even external device.

And the write speed depends heavily on the storage device model
winwan
Senior User
Posts: 86
Joined: Fri 2014-07-04 15:51

Re: USB AUDIO converts IIS to another chip

Post by winwan »

I can share an external SRAM, exchange data with each other in the way of FIFO, or connect to the SD card
winwan
Senior User
Posts: 86
Joined: Fri 2014-07-04 15:51

Re: USB AUDIO converts IIS to another chip

Post by winwan »

Hannu wrote: Thu 2024-11-14 9:04 Mass storage devices aren't very polite. You can give them your data fast and then at some point those things say "no thanks, please wait" And while you are waiting for stuff, you get more data steadily. And then you need some buffer which would need to be quite large and even external device.

And the write speed depends heavily on the storage device model
viewtopic.php?t=3017

hi, I suddenly thought of using your ADC board to change the USB AUDIO part to the USB DISK protocol, which should be easier? :D
Hannu
VLSI Staff
Posts: 546
Joined: Mon 2016-05-30 11:54
Location: Finland
Contact:

Re: USB AUDIO converts IIS to another chip

Post by Hannu »

LOL

That is a very strange idea. USB mass storage works basically so that USB host request disk block from device to be read or written. Bulk mode is used in 64 or 512 bytes chunks depending USB protocol version.

Doing this would give interface where you could read with something like:

dd if=/dev/something of=audiofile.pcm

And there could be doubled or missing samples. So:
Please don't even think about that. It doesn't work like that.
Post Reply