sounds

Guest
is it possible for me to program using vhdl code that would output a
sound?...my input is a digital that would trigger an assign sound
output coming from the computer?...is it possible to store a wav
format and mp3 format on a spartan 3e kit using vhdl?
 
carlmorada@gmail.com wrote:
is it possible for me to program using vhdl code that would output a
sound?...my input is a digital that would trigger an assign sound
output coming from the computer?...is it possible to store a wav
format and mp3 format on a spartan 3e kit using vhdl?
If I wanted to to trigger sounds,
I would click the mouse on my computer.
If I wanted to learn vhdl, I would buy a simulator.

-- Mike Treseler
 
On Sep 16, 5:57 pm, carlmor...@gmail.com wrote:
is it possible for me to program using vhdl code that would output a
sound?...my input is a digital that would trigger an assign sound
output coming from the computer?...is it possible to store a wav
format and mp3 format on a spartan 3e kit using vhdl?
VHDL is a description language, not a programming language. With it,
you are describing hardware, which may include the description of a
wav/mp3 decoder.

Im sure it is possible to do what you ask, but Im imagining you will
probably need to create a memory interface to store the wav file, an
interface to talk to an output from the PC as the source of the wav
file, a wav/mp3 decoder that will decode each byte of data into a
signal sent to a speaker.

Overall, I fear its a non-trivial application.
 
On Sep 17, 8:15 am, Tricky <Trickyh...@gmail.com> wrote:
Overall, I fear its a non-trivial application.
Let's see... You could have an SPI module talking to an external flash
to store/get the wav file; a UART module perhaps to get the wav file
in there in the first place; a low level DAC driver to spit out each
sample to an external DAC; you could use the UART connection to the
computer to trigger the event. Doesn't sound too bad but it's
certainly not a first project for a beginner!
 

Welcome to EDABoard.com

Sponsor

Back
Top