Search found 12 matches

by adventure_audio
Mon May 21, 2018 1:25 pm
Forum: Algorithm development
Topic: Octave +/- 1
Replies: 6
Views: 4574

Ok cool. It works now but here is the weird thing. I have two of the same unit that both work with some other stock reverb code. But when I flash the 24LC32A with this code, it works in one but does not work in the other. Again, a different reverb code worked in both. But with this octave code, only...
by adventure_audio
Fri May 18, 2018 11:12 am
Forum: Algorithm development
Topic: Octave +/- 1
Replies: 6
Views: 4574

Pot 0 controls the crossfade between -1 octave and +1 octave i.e. REG0 and REG1.

Then I am writing that output to REG2. Then I want Pot 1 to control the wet dry mix between ADCL and REG2. I am writing that to REG3 and sending that to DACL.
by adventure_audio
Thu May 17, 2018 2:09 pm
Forum: Algorithm development
Topic: Octave +/- 1
Replies: 6
Views: 4574

Octave +/- 1

Can anyone point out why this code isn't working? Maybe I've been staring at it too long: delayd mem 4096 ; Down delay temp mem 1 ; Temp location for partial calculations ; SKP RUN ,START ; wldr RMP0,16384,4096 wldr RMP1,-8192,4096 ; START: LDAX ADCL ; Write it to left delay and clear ACC wra delayd...
by adventure_audio
Mon Feb 08, 2016 2:24 pm
Forum: FV-1 software questions
Topic: Unwanted Distortion in Delay
Replies: 7
Views: 7314

I am basing my delay off of this and it works very well. But instead of having a mix between dry/wet, I would like to blend the octave up delay with the regular delay. ; Guitar Echo ; HK July 2009 ; version 2.0 ; ; mono in mono out ; pot0 = feedback amount (from no feedback = slap back to infinite f...
by adventure_audio
Sat Feb 06, 2016 12:12 pm
Forum: FV-1 software questions
Topic: Unwanted Distortion in Delay
Replies: 7
Views: 7314

That is my octave up effect. Which seems to be working but I get a lot of unwanted distortion. Is there anything else that sticks out to you? Maybe something with the gain staging of the coefficients?
by adventure_audio
Fri Feb 05, 2016 4:42 pm
Forum: FV-1 software questions
Topic: Unwanted Distortion in Delay
Replies: 7
Views: 7314

Unwanted Distortion in Delay

I am experiencing some weird distortion that I cannot track down on the delay tails. I feel like my gain on something is too high but I cant figure out what. Instead of a clean blend I am adding an octave blend. Thoughts? ; Guitar Echo ; HK July 2009 ; version 2.0 ; modified by Christian Terjesen / ...
by adventure_audio
Wed Dec 16, 2015 7:58 pm
Forum: FV-1 software questions
Topic: Freeze Sampler / Looper
Replies: 1
Views: 5634

Freeze Sampler / Looper

How would I create a program that will record a buffer of samples and play them back in a loop using a pot to set the length of the loop? Sort of like a freeze pedal that will sustain the chord in the middle and hold it until the button is pressed again. I do not want to add loops on top of each oth...
by adventure_audio
Tue Dec 15, 2015 9:18 pm
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9808

I wish that I could use a separate analog output for my 'thru' jack but this project will have another program that will use both outputs. So for consistency, I need to code a thru output on the right channel. Thanks for the link! Looks like I have a bit of reading to do about ramps and pitch shifti...
by adventure_audio
Mon Dec 14, 2015 3:32 pm
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9808

Yes thats exactly what I am trying to do.
by adventure_audio
Sat Dec 12, 2015 1:42 pm
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9808

The idea is to have one input and two outputs. I would like to use the right out on the FV-1 to use as a "thru" and only alter the left output. I wouldn't mind compromising the delay time in order to open up some memory and commands for the pitch shift. Which would be more command intensiv...
by adventure_audio
Sat Dec 05, 2015 5:22 pm
Forum: FV-1 software questions
Topic: Time and Pitch Shifting
Replies: 8
Views: 9808

Time and Pitch Shifting

Hey There, I put together a little program to delay the signal 0-1000ms and would like to implement some pitch shifting to do +/-20 cents from the original signal. Can someone point me in the right direction? Thanks! RDAX ADCL,1.0000000000 WRA 0,0.0 CLR OR $007FFF00 MULX POT0 RDFX REG1,0.0012500000 ...
by adventure_audio
Wed Feb 18, 2015 12:30 am
Forum: Algorithm development
Topic: Modulated Reverb Tail VERIFIED CODE
Replies: 2
Views: 6998

Modulated Reverb Tail VERIFIED CODE

I have a few questions about further developing this code: How can we ... 1) Make the reverb smoother? (I can hear several taps in the tail rather than something that seems like real reverb.) 2) Increase the tail length and depth? 3) Modulate the tail to go ramp up in pitch after N seconds. N contro...