Search found 66 matches

by ZibiSound
Sat Oct 12, 2013 2:40 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

I'm going to make my own effector, I assume to use a microprocessor to control FV-1 and control main parametr of effect by platter disc, exactly like in Pioneer effectors (Google: Pioneer FX500 or Pioneer FX1000). I want to add a second parametr to regulation and mix. That's all I can say about my c...
by ZibiSound
Sat Oct 12, 2013 5:58 am
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

Thanks, I'm testing this soft now. But, unfortunately, I see your last version (#399) has some bugs (for example window with information about max used instructions that is displaying all time and can't close it). Just one more question about programming eeprom - this memory has address inputs A0-A2...
by ZibiSound
Fri Oct 11, 2013 3:15 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

I have registered on your board. Please activate my account, login: sebxx4
by ZibiSound
Fri Oct 11, 2013 2:43 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

@Digital Larry - I'm talking about this:
http://www.spinsemi.com/forum/viewtopic.php?t=372
Can I download this program from somewhere ?


BTW - is my schematic correct ?
by ZibiSound
Fri Oct 11, 2013 9:07 am
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

What do you say about this ?

Image

I think, in that way I can connect much more eeproms by adding next gates. Do you think it will work ?
by ZibiSound
Fri Oct 11, 2013 7:50 am
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

You don't even need a multiplexer, you can connect the SDA and SCLK lines of the eeproms in parallel. The FV-1 talks to the eeprom at address 0, set by pins 2-4 on the eeprom, so your micro just needs to toggle one of those pins on each eeprom setting one to address 0 and the other one to any other...
by ZibiSound
Thu Oct 10, 2013 8:16 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

What do you think about that method (eeprom switching via uC) ?

- If effect is loaded, set S2S1S0 to 000 and T0 to 0 (bypass)
- Switch EEPROM connects by multiplexer
- Set T0 to 1 and S2S1S0 to desired value

@Digital Larry, What's with your SpinCAD Designer ? :)
by ZibiSound
Thu Oct 10, 2013 1:14 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

No, thanks :) It's not for me bacause I want to pack it all in one chip and, if it's possible, get stereo. BTW - this 1s delay (Fs=32kHz) is for 2 channels (500ms/chan) or 1s/chan ? And another question - about programs memory (external). In one 24LC64 EEPROM I can pack 8 effects. But what if I want...
by ZibiSound
Wed Oct 09, 2013 4:02 am
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

It was so beauty to be real...
I suppose there is no way to use an external memory too, right ?

Do you know some other dsp processor like fv-1 in similar price ?
by ZibiSound
Tue Oct 08, 2013 12:17 pm
Forum: FV-1 software questions
Topic: 8 seconds delay
Replies: 21
Views: 25977

8 seconds delay

Hi. I found here a code of delay effect with 8 seconds delay. I think this processor is amazing that it can do something like that :D But there is a little problem - sound quality is very bad. Frank, you helped me a few times, I think this time you also help. Here's code: equ input reg0 equ loop reg...
by ZibiSound
Sat Oct 05, 2013 11:30 pm
Forum: FV-1 software questions
Topic: White Noise Generator
Replies: 5
Views: 6736

I will be something like this ? ;Process Pot2 to decide 1 of 2 output possibilities rdax pot2,1 and %01000000_00000000_00000000 skp zro,LowPass ;if zero, the skip over other code clr ;clear the accumulator NotchOut: ldax notch skp run, Pend ;skip to end of code LowPass: ldax lp_dly skp run, Pend ;sk...
by ZibiSound
Sat Oct 05, 2013 9:52 am
Forum: FV-1 software questions
Topic: White Noise Generator
Replies: 5
Views: 6736

Thanks, I think this is exactly what I need :) Can you tell me what's the difference between 24 and 48bit version ? And I have another question: If this code makes 4-position "switch": ;Process Pot2 to decide 1 of 4 output possibilities rdax pot2,1 and %01100000_00000000_00000000 ;mask off...
by ZibiSound
Sat Oct 05, 2013 6:39 am
Forum: FV-1 software questions
Topic: White Noise Generator
Replies: 5
Views: 6736

White Noise Generator

Hi,
Is there a way to generate white noise using FV-1 ?
Later I want to add a low pass filter to make something like step noise, but I can't find any program to generate noise.
by ZibiSound
Wed Sep 11, 2013 6:00 am
Forum: FV-1 software questions
Topic: BitCrusher again
Replies: 5
Views: 6800

I have read your advice few times and I was able to properly modify the code at first try. Now it's works like I wanted at the beginning :D I put the modified code below. I use POT1 (center) to control a crushing, and position 0 is bypass. flopper equ reg0 lastval equ reg1 clr rdax flopper,1.0 ;read...
by ZibiSound
Mon Sep 09, 2013 8:06 pm
Forum: FV-1 software questions
Topic: BitCrusher again
Replies: 5
Views: 6800

If it's a such big problem for you, what have I to say ? I think that other people will benefit from this too, if you help me with this code. This effect is quite popular. Or maybe is somewhere a complete code ? I think it would be faster if you do it for me than trying to explain it to me, because ...