4 Channel CV recorder looper?
2007-10-26 by Grant Richter

Yahoo Groups archive
Archive for ComputerVoltageSources.
Index last updated: 2026-03-30 01:00 UTC
Thread
2007-10-26 by Grant Richter
2007-10-26 by Eric Brombaugh
> Has anyone experimented with doing a 4 channel__________________________________________________
> recorder looper?
>
> I need one for an experiment.
>
> Any comments before I try to program one?
>
>
2007-10-26 by Samppa Tolvanen
>Which basic atom (pro) particulary has this limit?
>
> The BasicAtom Pro has fairly limited RAM - only 2k if
> the documentation on their site is right. That's going
> to severely restrict the sample rate and/or duration
> of the loops. You might be able to add external
> storage to augment the on-board RAM, but that gets
> complicated due to limited digital I/O.
>
> Eric
>
2007-10-26 by Eric Brombaugh
> On 10/26/07, Eric Brombaugh <ebrombaugh@...>__________________________________________________
> wrote:
> >
> >
> > The BasicAtom Pro has fairly limited RAM - only 2k
> if
> > the documentation on their site is right. That's
> going
> > to severely restrict the sample rate and/or
> duration
> > of the loops. You might be able to add external
> > storage to augment the on-board RAM, but that
> gets
> > complicated due to limited digital I/O.
> >
> > Eric
> >
>
> Which basic atom (pro) particulary has this limit?
>
> Samppa
>
2007-10-26 by John Loffink
> -----Original Message-----
> From: ComputerVoltageSources@yahoogroups.com
> [mailto:ComputerVoltageSources@yahoogroups.com] On Behalf Of Grant Richter
> Sent: Friday, October 26, 2007 8:32 AM
> To: ComputerVoltageSources@yahoogroups.com
> Subject: [ComputerVoltageSources] 4 Channel CV recorder looper?
>
> Has anyone experimented with doing a 4 channel recorder looper?
>
> I need one for an experiment.
>
> Any comments before I try to program one?
>
>
2007-10-27 by djbrow54
>
> Has anyone experimented with doing a 4 channel recorder looper?
>
> I need one for an experiment.
>
> Any comments before I try to program one?
>
2007-10-31 by Grant Richter
--- In ComputerVoltageSources@yahoogroups.com, "djbrow54" <davebr@...> wrote:
>
> Not exactly sure what you mean by a looper. It depends upon whether
> your CV is continuously variable or steps between discrete values.
>
> I did an arpeggiator where I would monitor the CV for a change since
> it was hard to detect a trigger (I since use edge interrupts). With a
> real-time clock, you just timestamp the CV value change. Ram use is
> minimal since you just have a record of the changes. Worked great.
>
> I did something similar for a CV delay which can implement some really
> long delays. Sample the CV transitions and clock them out at a
> variable delay later.
>
> Dave
>
> --- In ComputerVoltageSources@yahoogroups.com, "Grant Richter"
> <grichter@> wrote:
> >
> > Has anyone experimented with doing a 4 channel recorder looper?
> >
> > I need one for an experiment.
> >
> > Any comments before I try to program one?
> >
>
2007-11-01 by djbrow54
>could loop the VCO CV,
> I always thought it would be fun to have a 4 channel looper that
> wave CV, filter CV and VCA CV. That way when you play a neat littlelick, you could hit
> "loop" and then have you hands free to twiddle the knobs.over sequences that
>
> For Tangerine Dream kind of days (they did a lot of knob twiddling
> sound real good).notes need to be
>
> The old ARP 1603 would do 4 bars of 4/4 (16) so only 16 to 32 actual
> stored. I saw pictures of them using 1603s and 2600s at some point.wrote:
>
> Just a thought.
>
> --- In ComputerVoltageSources@yahoogroups.com, "djbrow54" <davebr@>
> >whether
> > Not exactly sure what you mean by a looper. It depends upon
> > your CV is continuously variable or steps between discrete values.since
> >
> > I did an arpeggiator where I would monitor the CV for a change
> > it was hard to detect a trigger (I since use edge interrupts).With a
> > real-time clock, you just timestamp the CV value change. Ram useis
> > minimal since you just have a record of the changes. Workedgreat.
> >really
> > I did something similar for a CV delay which can implement some
> > long delays. Sample the CV transitions and clock them out at a
> > variable delay later.
> >
> > Dave
> >
> > --- In ComputerVoltageSources@yahoogroups.com, "Grant Richter"
> > <grichter@> wrote:
> > >
> > > Has anyone experimented with doing a 4 channel recorder looper?
> > >
> > > I need one for an experiment.
> > >
> > > Any comments before I try to program one?
> > >
> >
>
2007-11-01 by Bruce Duncan
>It wouldn't be that hard to do. It's been 2.5 years since I wrote myCheck out the Modcan CV Recorder 57
>trig-gate-cv delay but the basic concept is I have three 128 event
>buffers. The first is used to timestamp an event (trigger high,
>trigger low, etc.). The second buffer is to record a trigger or gate
>transition (high or low). The third buffer is to record a CV value.
>When I detect a trigger, I timestamp it with a 'delay' factor and put
>the timestamp, trigger, gate, and CV in the buffer. The buffer is
>circular and at 128 events long it never fills up.