Page 1 of 1

Beginner

Posted: Tue Nov 15, 2011 6:45 am
by Lelouch
Hello,

I am a beginner in programming module such as the FV-1. I tried a sample programs provided on the site page http://www.spinsemi.com/knowledge_base/ ... mples.html

Generating triangle waves

skp run,1
wldr rmp0,10,4096
cho rdal,rmp0
sof 1,-0.25
absa

But the output signal is not changed . Could someone help me? I think i must add inputs (ADCL or ADCR) and outputs (DACL or DACR) but i don't know how.

Thank you.

Posted: Tue Nov 15, 2011 10:44 am
by frank
Add to the end of the program:

wrax dacl, 1.0
wrax dacr,0


That should output the result to both the left and right DAC outputs.

Posted: Fri Nov 18, 2011 7:45 am
by Lelouch
Thanks. I'll try that. But i have one other question. Why didn't we specified any entry ? Because in this case I don't understand which song will be modified ?

Posted: Fri Nov 18, 2011 11:37 am
by frank
Well this is just a triangle generator so there is no input to it. If you are looking at doing something like a chorus see this PDF http://www.spinsemi.com/Products/appnot ... N-0001.pdf

You are going to need to read alot of things if you are not experienced doing DSP or microcontroller programming.

Posted: Tue Nov 22, 2011 4:25 am
by Lelouch
Thanks for your help. I will read this and try to write my own program.