Search found 38 matches

by amz-fx
Wed Aug 12, 2015 7:13 am
Forum: FV-1 software questions
Topic: LFO code - how does it work
Replies: 9
Views: 11515

sin(a + b) = sin(a) + cos(a)*b This works very well, except the output of the calculation exceeds +/- 1.0 so it has to be scaled down once the calculation is made. A value of 0.577 for b is close to 45 degrees phase shift for the sine wave once it is scaled to the range. A 0.258 value of b is 22.5 ...
by amz-fx
Thu Jul 23, 2015 7:17 am
Forum: Algorithm development
Topic: Slow Random Noise
Replies: 6
Views: 9492

Slow Random Noise

I posted a white noise generator in a previous post: http://www.spinsemi.com/forum/viewtopic.php?t=528 However, I think that a different version that cycles more slowly would work better for filters, S-H, and other applications that could use the random numbers generated at a slower pace. I've put a...
by amz-fx
Wed Jul 08, 2015 11:35 pm
Forum: FV-1 hardware questions
Topic: What is the best way to use mono input to both ADC's
Replies: 18
Views: 24685

I don't see any benefit to doing mono this way. Why not just connect one input and then read from ADCL when you need to? I would tie the unused ADCR to ground through a 100n capacitor just so a high impedance input isn't left waving in the breeze like an antenna. Probably not important as long as y...
by amz-fx
Sun Jun 21, 2015 8:23 pm
Forum: FV-1 hardware questions
Topic: Using 6 Pots on the FV-1
Replies: 7
Views: 16454

Actually, I considered that and the first way that I wrote the code used a register as a counter so that it would alternate reading the pots on each pass through the code.... i.e. on the first pass through the code it would read one set of pots, then on the next pass through it would read the other ...
by amz-fx
Sun Jun 21, 2015 3:56 am
Forum: FV-1 hardware questions
Topic: Using 6 Pots on the FV-1
Replies: 7
Views: 16454

Using 6 Pots on the FV-1

This is an untested idea, and there may be techincal limitations of the FV-1 that would keep it from functioning properly. There are only 3 Pot inputs to the FV-1 but sometimes you need more for a program. The way to add more pots is to multiplex the pot input channels on the FV-1 so that multiple p...
by amz-fx
Sat Apr 11, 2015 5:50 am
Forum: FV-1 hardware questions
Topic: Clipping led questions
Replies: 6
Views: 7627

The 14ma current limit is not on the datasheet, it is just what it works out to be with the 100 ohm resistor shown in the same schematic. Most pins are 20ma limit so I suspect that is the absolute max.

regards, Jack
by amz-fx
Fri Apr 10, 2015 9:16 pm
Forum: FV-1 hardware questions
Topic: Clipping led questions
Replies: 6
Views: 7627

Re: Clipping led questions

If you run them in series it should be OK since the current will be the same but you may need to adjust the current limit resistor value slightly. You probably will not be able to run them in series. The forward voltage of two LEDs in series will be 3.6v or more, and there is only 3.3v powering the...
by amz-fx
Sun Mar 08, 2015 4:36 pm
Forum: Algorithm development
Topic: Another Noise Generator
Replies: 5
Views: 16299

Another Noise Generator

I have written a 24-bit pseudorandom noise generator for the FV-1. It is a little different than the one that Frank posted and uses fewer instructions. It should run for over 8.5 minutes without repeating. ; 24 bit maximal period Galois LFSR ; Example by Jack Orman ; http://www.muzique.com ; March 5...
by amz-fx
Mon Oct 13, 2014 11:36 pm
Forum: Algorithm development
Topic: Spring reverb
Replies: 14
Views: 29516

There have been a number of papers by Parker, Bilbao and others presented at the DAFx conferences. Interesting reading but somewhat technical in nature.

Info: Spring Reverbs

regards, Jack
by amz-fx
Wed Oct 08, 2014 7:41 am
Forum: FV-1 hardware questions
Topic: Spin Dev setup
Replies: 0
Views: 30156

Spin Dev setup

I mounted my Spin SPN1001-DEV on a chassis with an interface board for guitar use:

Image

Check it out in my blog:

http://www.muzique.com/news/fv-1-dev-board/

regards, Jack
by amz-fx
Thu Sep 04, 2014 11:35 am
Forum: Algorithm development
Topic: Pulling apart the phase shifter program
Replies: 8
Views: 10607

Re: Pulling apart the phase shifter program

Digital Larry wrote:First off, I think that 4 all-pass stages are required for each notch you want in the spectrum.
DL,

In analog phasers, two all-pass stages produce a notch, so a 4-stage phaser has two notches. 6-stage phasers have 3 notches, and so on.

regards, Jack
by amz-fx
Thu Aug 26, 2010 11:02 am
Forum: Algorithm development
Topic: R.I.P. Keith Barr
Replies: 4
Views: 8112

Tragic. My sincere condolences to his family and friends.

regards, Jack
by amz-fx
Wed May 05, 2010 8:30 pm
Forum: FV-1 hardware questions
Topic: Input Trip Voltage
Replies: 4
Views: 6710

I want to pull it low through a diode. So the pin will be about 0.65v above ground.

Should work?

Thanks, Jack
by amz-fx
Wed May 05, 2010 1:50 am
Forum: FV-1 hardware questions
Topic: Input Trip Voltage
Replies: 4
Views: 6710

Input Trip Voltage

Frank,

What is the voltage at which the address pins, S0-S2, will switch?

I'm guessing that they are cmos and it is around 1/2Vcc? I'm really interested in how close to ground I have to pull the address lines for them to flip to zero (assuming a 20k-47k pullup).

Thanks, Jack
by amz-fx
Thu Apr 29, 2010 7:18 am
Forum: Algorithm development
Topic: Flip flop
Replies: 13
Views: 18163

So the width of the pulse would have to be set in the code, I think, which would be strange since in a regular pulse wave, the proportion between high and low is the same at any frequency, whereas here, low notes would have very narrow pulse width, approaching 100% duty cycle on the lowest notes. T...