Search found 5 matches

by vasilius
Wed Mar 29, 2023 6:54 am
Forum: FV-1 software questions
Topic: Amplitude and Frequency Formulas for RAMP LFO
Replies: 11
Views: 13640

Re: Amplitude and Frequency Formulas for RAMP LFO

Hello I found here http://www.spinsemi.com/forum/viewtopic.php?f=4&t=713 code sof 0,0.999 wrax rmp0_range,1 wrax rmp1_range,0 What value will be in rmp0_range? 32735? but it's not correct. or also there wrax fade,0 or %00111111_11111111_00000000 // 0x3fff00 => 16383 wrax rmp0_range,1 what value ...
by vasilius
Sun Jan 15, 2023 9:37 am
Forum: FV-1 software questions
Topic: Amplitude and Frequency Formulas for RAMP LFO
Replies: 11
Views: 13640

Re: Amplitude and Frequency Formulas for RAMP LFO

aha

then k is repeat RAMP in float 0..1
k = ramp/range;
and compc = 1.0 - k

XFADE also in area 0..1.0?
by vasilius
Sun Jan 15, 2023 8:17 am
Forum: FV-1 software questions
Topic: Amplitude and Frequency Formulas for RAMP LFO
Replies: 11
Views: 13640

Re: Amplitude and Frequency Formulas for RAMP LFO

question about interpolation coefficients How it calcs? for example take example wldr RMP0,16384,4096 cho rda,RMP0,REG|COMPC,delayd cho rda,RMP0,0,delayd+1 wra temp,0 cho rda,RMP0,RPTR2|COMPC,delayd cho rda,RMP0,RPTR2,delayd+1 cho sof,RMP0,NA|COMPC,0 cho rda,RMP0,NA,temp mulx POT1 wrax REG0,0 here f...
by vasilius
Sat Jan 14, 2023 6:05 am
Forum: FV-1 software questions
Topic: Amplitude and Frequency Formulas for RAMP LFO
Replies: 11
Views: 13640

Re: Amplitude and Frequency Formulas for RAMP LFO

As I understand RAMP LFO in fv-1 : Every sample we increment LFO_ACC to some step value step = freq / 16384.0; mask = RANGE - 1; LFO_ACC = (LFO_ACC - step) & mask - this is just for simplicity from sign of step depends type of ramp : decreasing or increasing so we get difference rates for differ...
by vasilius
Fri Jan 13, 2023 2:01 pm
Forum: FV-1 software questions
Topic: Amplitude and Frequency Formulas for RAMP LFO
Replies: 11
Views: 13640

Re: Amplitude and Frequency Formulas for RAMP LFO

CHO RDAL for RMP looks like triangle (float 0..0.5)
If we look on phaser sources and listen - we hear that lfo work smooth like periodic function, RMP have clicks every period.