Search found 54 matches

by Aaron
Wed Mar 08, 2017 1:57 pm
Forum: FV-1 hardware questions
Topic: 3 Programs with an SPDT ON-OFF-ON Switch
Replies: 5
Views: 6702

If you connect 3.3V to pin2 on the switch, have pull down resistors on S0 and S1 and connect both of these to pins 1 and 3 on your switch.


Image
by Aaron
Mon Feb 06, 2017 9:20 am
Forum: FV-1 hardware questions
Topic: NAMM 2017
Replies: 41
Views: 67708

Image Image Image
by Aaron
Mon Jun 27, 2016 7:23 am
Forum: Algorithm development
Topic: Bandpass Resonant Filter
Replies: 12
Views: 13524

I believe MacroMachines is referring to the function:

f = 2sin(pi*Fc/Fs)

This is what you use to find the coefficient for the corner frequency (wf).
by Aaron
Mon May 02, 2016 2:40 pm
Forum: Algorithm development
Topic: Trying to understand RMS limiter example in knowledge base
Replies: 5
Views: 7284

The coefficient for the lpf can be changed to change the attack/release time. Using the formula: AT = 1-e^(-2.2T/tat) where AT = filter coefficient T = 1/32768 tat = desired attack time in sec So a coefficient of 0.001 will yield an attack time of around 65ms. A lot of good info on dynamic processin...
by Aaron
Fri Apr 08, 2016 7:58 am
Forum: FV-1 software questions
Topic: Clearing Memory
Replies: 1
Views: 3566

Clearing Memory

I was curious if anyone knows of a way to clear an entire memory block in one cycle.
by Aaron
Tue Feb 16, 2016 11:12 am
Forum: FV-1 software questions
Topic: Unwanted Distortion in Delay
Replies: 7
Views: 7439

You can get a little cleaner octave up by squaring your input as opposed to taking the absolute value. You will need to add some gain before squaring. rdax dout,1 ;get dout sof -2,0 ;increase gain sof -2,0 ; sof -2,0 ; sof -2,0 ; wrax oct,1 ;save to oct mulx oct ;square oct
by Aaron
Thu Jan 14, 2016 2:48 pm
Forum: Algorithm development
Topic: tap tempo snippet
Replies: 84
Views: 966256

For those interested in using a sin for the LED rate indicator you will have to convert the "taptempo" register's values from a time to a frequency which can be done using the log and exp functions. AN-0001 gives us the formula for finding the frequency coefficient for the wlds instruction...
by Aaron
Tue Dec 15, 2015 8:06 am
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9928

In experimenting with this I have found that you can indeed have the full delay space reserved for the delay and use this same memory block for the pitch shift. So all you will need to do is setup the delay the same and use that memory block in the pitch shift algo. When calculating the pitch shift ...
by Aaron
Mon Dec 14, 2015 9:09 am
Forum: Algorithm development
Topic: 3K room reverb help
Replies: 6
Views: 8930

Instead of reading from the address pointer I would just read from the end of pdel rdax adcl,0.5 rdax adcr,0.5 ;get inputs mulx gain ;give greater gain to short RT wra pdel,0 ;read predelay and write initial response delay: ;rmpa 1 ;instead of reading from address pointer rda pdel#,1 ;read from the ...
by Aaron
Tue Dec 08, 2015 10:30 am
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9928

I ran into this issue a few months back. Unfortuantely you will need 513 spaces of memory for the pitch shifting so your delay will be limited to around 984ms unless you use a slower crystal. Are you wanting to delay the pitch shift, pitch shift the delay, or run the pitch shift in parallel with the...
by Aaron
Mon Sep 21, 2015 2:37 pm
Forum: FV-1 software questions
Topic: SIN LFO frequency shift
Replies: 3
Views: 5481

Let me rephrase the question like this:

What is the correlation to sin_range and the amount of pitch shift that takes place? I am wanting to implement a specific range of detuning. AN-0001 does not seem to cover this.
by Aaron
Mon Sep 21, 2015 10:47 am
Forum: FV-1 software questions
Topic: SIN LFO frequency shift
Replies: 3
Views: 5481

SIN LFO frequency shift

Is there a formula for calculating the frequency shift per delay sample when using the CHO command for chorus/vibrato?
by Aaron
Wed Sep 16, 2015 3:18 pm
Forum: FV-1 hardware questions
Topic: ADC input vs POT inputs
Replies: 3
Views: 5218

Just to further my understanding, the FV-1 utilizes delta-sigma ADC architecture?
by Aaron
Wed Sep 16, 2015 10:36 am
Forum: FV-1 hardware questions
Topic: ADC input vs POT inputs
Replies: 3
Views: 5218

ADC input vs POT inputs

I have been trying to rework slacker's tap tempo code to use one of the ADC inputs for the switch. I have been able to get it it work-ish, for the most part anyway. I feel that if I had more info on how the ADC is read vs the POT inputs then things would be much easier. I see in the manual that the ...
by Aaron
Tue Jun 23, 2015 7:24 am
Forum: FV-1 software questions
Topic: Quantizing pots
Replies: 5
Views: 6843

Quantizing pots

I was wondering if there is a way to quantize pots to exact intervals, say 30 or 90 possibilities. I see in the knowledge base that masking a pot to 5bits will give you 32 steps but can this be tailored even more?