Search found 1311 matches

by Henrik
Fri 2023-11-10 11:12
Forum: VS1005 and VSOS Software
Topic: Test problems found by FTOREV23
Replies: 6
Views: 9507

Re: Test problems found by FTOREV23

Hello!

I have downloaded your files and looking at the issue.

I will write here when I know what the issue is.

One question:
If you run SetClock without any parameters, what is the output?

Code: Select all

S:>setclock
Kind regards,
- Henrik
by Henrik
Thu 2023-09-14 11:31
Forum: VS1010 Forum
Topic: VS1010 Audiobook
Replies: 1
Views: 4585

Re: VS1010 Audiobook

Hello!

I would like to add that the current demo version of AudioBook is very suitable for devices with an LCD screen: it is capable of displaying on the console (can be redirected to e.g. LCD) the current passage. In the case of The Bible, and depending on the size of the screen, AudioBook can ...
by Henrik
Wed 2023-09-13 13:23
Forum: VS1005 and VSOS Software
Topic: PlayDirR - Player with fast song repeat capability
Replies: 0
Views: 7018

PlayDirR - Player with fast song repeat capability

Hello!

Attached to this message is a new VS1005 audio player, PlayDirR.dl3. PlayDirR is an audio player capable of playing audio files a directory at the time. It is much like PlayDir, except that it enables a fast, sample-accurate and seamless song repeat function.

Documentation for the ...
by Henrik
Fri 2023-08-18 10:52
Forum: VS1010 Forum
Topic: VS1010 Basic Player, source+doc+video
Replies: 1
Views: 2810

VS1010 Basic Player, source+doc+video

Dear Forum Members,

Attached to this message is a new VS1010 Basic MP3 Player with documentation. The aim of the project is to equip the reader with the necessary tools for creating their own audio player on the VS1010 platform. The code is intended to be easy to read while still being useful ...
by Henrik
Tue 2023-08-15 8:54
Forum: Slave Decoder Applications
Topic: VS1053 ogg playback is not working
Replies: 2
Views: 5210

Re: VS1053 ogg playback is not working

Hello!

Have you been able to solve your issue? If not, could you save the beginning of a stream to a file so that we could check whether all headers are formatted in such a way that VS1053 would be happy with it? It doesn't have to be a very long piece, typically 8-16 KiB should be enough for us to ...
by Henrik
Tue 2023-08-15 8:39
Forum: VS1005 and VSOS Software
Topic: A problem with FTxREV applications
Replies: 2
Views: 4745

Re: A problem with FTxREV applications

Hello!

Unfortunately the current Reverb Generator does not support adding an Equalization Filter that would only apply to the Wet part of audio.

Can you explain why you want to do this? If we understand the reason, perhaps we can help.

Kind regards,
- Henrik
by Henrik
Wed 2023-07-19 9:14
Forum: VS1005 and VSOS Software
Topic: An error occurred during uninstalling FTOEQU, causing the system to crash
Replies: 4
Views: 4657

Re: An error occurred during uninstalling FTOEQU, causing the system to crash

Just to add to the previous message, you can either turn all filters off by calling:
SetEqu 1 0
SetEqu 2 0
[...]
SetEqu 16 0

... or from C code something like ...
#include <aucommon.h>
#include <vsos.h>

int i;

for (i=0; i<16; i++) {
struct FilterEqualizer fltEqu = {0};
ioctl(fp, IOCTL_AUDIO ...
by Henrik
Wed 2023-07-19 9:04
Forum: VS1005 and VSOS Software
Topic: An error occurred during uninstalling FTOEQU, causing the system to crash
Replies: 4
Views: 4657

Re: An error occurred during uninstalling FTOEQU, causing the system to crash

Hello!


But this is not the result I want, because I am playing, deciding whether to load FTOEQU, if AUXPLAY is turned off and restarted, the sound will be cut out, which gives the customer a very bad experience. So I want to load FTOEQU at any time, and be able to stop it immediately when it's ...
by Henrik
Tue 2023-07-18 15:52
Forum: VS1005 and VSOS Software
Topic: An error occurred during uninstalling FTOEQU, causing the system to crash
Replies: 4
Views: 4657

Re: An error occurred during uninstalling FTOEQU, causing the system to crash

Hello!

I can confirm your symptoms. I also have an explanation and a solution.

First let me explain what goes wrong. This is a subtle thing, not very obvious at all.

THE ISSUE

In VSOS we have two standard audio file handles: stdaudioin and stdaudioout. In your configuration they
are by default ...
by Henrik
Thu 2023-06-01 9:35
Forum: DSP and Audio Software
Topic: VS1005 from zero/UART commands
Replies: 6
Views: 7289

Re: VS1005 from zero/UART commands

Hello!

I will make some additions to Hannu's answers. This is going to be a long one, so I hope it doesn't get too confusing.



2. In fact, there is only one I2S terminal (GPIO10-14). How to make an I2S route through VS1005? Probably, you will have to switch AUII2SS / AUOI2SM during operation ...