Apologies if this has been explained before and I simply didn’t find it.
See title. Correct me if I’m wrong: the SID V2 engine seems to offer the option to directly forward various information to the “gate” output pins, including gate, slide, and accent information (when using the bassline or drum mode)
Is the same possible with the SEQ V4? Or are the gate outputs (I will be using a dedicated DOUT shift register) somehow hard-wired to pair up with their respective CV channels? Like gate 1 always goes with CV 1 (and outputs the gates of the track that CV 1 is assigned to)
################################################## # CV and Gate/Trigger/Sync Setup ################################################## # AOUT interface now selected in CV Configuration Menu and stored in MBSEQ\_GC.V4 file # please scroll through the menu to find this page! # the 8 CV gates can be assigned to a shift register (0=off, 1-32: number of shift register): # - 1st CV Gate available at DOUT SR output D7 # - 2nd CV Gate available at DOUT SR output D6 # - 3rd CV Gate available at DOUT SR output D5 # - ... # - 8th CV Gate available at DOUT SR output D0 CV\_GATE\_SR1 0 # and DIN Clock Outputs can be assigned to a shift register as well (0=off, 1-32: number of shift register): # D7..D0 will output individual clock or start/stop signals which can be configured in the CV configuration page CLK\_SR 0 # additional gate triggers are available on common digital output pins of the # DOUT shift register chain - they are assigned to AOUT channel #16 (Note C-1, C#1, D-1, ...) # define the shift registers which should be used here (each provides 8 gates) # Note that SRs assigned to this function cannot be used as LED outputs (exclusive function) # Allowed values: 1-32, 0 disables the function, all other values invalid and not allowed DOUT\_GATE\_SR1 0 DOUT\_GATE\_SR2 0 DOUT\_GATE\_SR3 0 DOUT\_GATE\_SR4 0 DOUT\_GATE\_SR5 0 DOUT\_GATE\_SR6 0 DOUT\_GATE\_SR7 0 DOUT\_GATE\_SR8 0
// if channel 1..8: set only note value on CV OUT #1..8, triggers Gate #1..8 // if channel 9..12: set note/velocity on each pin pair (CV OUT #1/2, #3/4, #5/6, #7/8), triggers Gate #1+2, #3+4, #5+6, #7+8 // if channel 13..15: set velocity/note on each pin pair (CV OUT #1/2, #3/4, #5/6), triggers Gate #1+2, #3+4, #5+6 // if channel 16: trigger the extension pins (DOUT)
This is entirely new to me! Is the pairing feature only available via the actual tracks 9-15 on the Seq?
So this way there already is a velocity feature implemented, which is much more desirable than accent on/off anyway!
But instead of duplicating the gate signal across the paired pins, #1/2, #3/4, #5/6, #7/8, couldn’t the second pin of each pair go high when velocity exceeds 100? Which would naturally also happen when the accent trig is active?
This way there’d be note, velocity, accent, all in one flexible package… Or am I misunderstanding something?
o AOUT: Channel 9..12/13..15 now set the gate pins #1/3/5/7 as documented (previously it was #1/2/3/4 due to a code translation error)
New: gate pins #2/4/6/8 are now set whenever the velocity is >100.
This way the pins can be used as an accent trigger