This Wednesday we have updated the VS1063 Datasheet so that it better explains how to activate I2S.
For details, please read Chapter 10.13, I2S Output from the datasheet, available at http://www.vlsi.fi/fileadmin/datasheets ... 1063ds.pdf .
Kind regards,
- Henrik
Search found 1302 matches
- Fri 2012-11-09 16:18
- Forum: Slave Decoder Applications
- Topic: how to use VS1063'i2s
- Replies: 5
- Views: 4504
- Fri 2012-11-09 11:52
- Forum: Slave Decoder Applications
- Topic: the frequency response of vs1053/vs1063
- Replies: 5
- Views: 5787
Re: the frequency response of vs1053/vs1063
Both VS1053 and VS1063 are capable of recording audio with a straight frequency response upto 20 kHz. One example application that demonstrates this is the VS1053b WAV PCM Recorder application, which has a frequency response of +- 0.15 dB between 10 - 20000 Hz. The package is available for download ...
- Thu 2012-11-01 14:50
- Forum: VS1005 and VSOS Software
- Topic: Latest VSOS Kernel (3.66) available here
- Replies: 109
- Views: 233167
Re: Latest stable VSOS Kernel (0.22) now available
Dear forum members, We are proud to present you the official 0.22 release of the VSOS Kernel and its example applications. The feature list is pretty much the same that Panu wrote above, so I will not repeat it here. At least for the moment VSOS 0.22 and its example applications are a part of VLSI S...
- Wed 2012-08-22 10:05
- Forum: Microcontroller Software
- Topic: Ogg Recording and LineIN
- Replies: 3
- Views: 4114
Re: Ogg Recording and LineIN
I meet the same issue when using PCM record, follow the instrutions descributed in vs1053-pcm-recorder-090 document. when i execute VlsiWriteReg(VLSI_AIADDR, 0x34); DREQ is often busy, or HDAT1 is often 0, or HDAT0 is always 0. always failed. Hello Yang Kai! Could you share your loading code so tha...
- Wed 2012-05-23 12:43
- Forum: VS1005 and VSOS Software
- Topic: VS1005 Basic Course
- Replies: 17
- Views: 24924
GUI Example for VS1005f / VSOS 0.19
Here is a GUI example for VSOS 0.19 that consists of two solutions: AppLauncher and VS1005GuiExample. Please extract the files to your Solutions folder. AppLauncher shows all .APP files on the SD memory card, then lets the user select one. VS1005GuiExample is a work-in-progress MP3 player that plays...
- Fri 2012-03-16 17:14
- Forum: Microcontroller Software
- Topic: VS1053 recording example
- Replies: 25
- Views: 30560
VS1053 recording example
Hello! Here is a generic microcontroller example for generating your VS1053 recording machine. You'll have to create a few VS1053 interfacing functions for it to work (documented in the comments), but otherwise it is pretty standard C. Share and enjoy! - Henrik /* Example code how to implement VS105...
- Wed 2011-08-17 11:35
- Forum: Microcontroller Software
- Topic: VS1053 OGG Recorder problem
- Replies: 19
- Views: 16333
Re: VS1053 OGG Recorder problem
Hi All, Exist a flag to test if the VS1053's buffer overflows? Kind regards, Claudio Dear Claudio, the VS1053 Ogg Vorbis recorder does not have a flag to test for buffer overflow. However, if you use a low bit-rate profile like 16 kHz and low quality (e.g. quality 5 or lower), then even slow microc...
- Fri 2011-05-06 7:27
- Forum: Slave Decoder Applications
- Topic: initial conditions
- Replies: 5
- Views: 5979
Re: initial conditions
Hello, Hi I'm a lot confused with the datasheet. I'd like to know what are the initial conditions of the vs1011e mp3 decoder, I mean, in the app note "vs10XXan" page 13 is the quick start up, in the topic 4.4 says "Writing to SCI" and I'd like to know what is SCI and how do I wri...
- Wed 2011-05-04 9:16
- Forum: System Software
- Topic: Joining ogg files into one file
- Replies: 3
- Views: 5377
Re: Joining ogg files into one file
Greetings, I'm not sure where to post this question, but this forum seems to be the closest fit. This is certainly good enough a place. :) I am trying to join multiple ogg files together into one file. Various people suggest: cat file1.ogg file2.ogg > joined.ogg I can play all of joined.ogg with og...
- Thu 2010-10-21 14:24
- Forum: Microcontroller Software
- Topic: DREQ strange behavior and not finished Vorbis record (fixed)
- Replies: 13
- Views: 13587
Re: DREQ strange behavior and not finished Vorbis recording
Dear Clemente, may I chime in? To me it seems like your problematic code lies here: while( i < temp ) { /* */ sample = VLSIReadReg( VLSI_HDAT0); cWAIT_DREQ; *voggSample++ = (BYTE)sample >> 8; *voggSample++ = (BYTE)sample & 0x00FF; i++; // DelayMs( 1); } I think the problematic line is: *voggSamp...