Quote
As the beyond-the-glide mode is still in the V4 Manual I thought it was still working.
I have to overwork this section.
Quote
I didn't knew that Length had some effect in Roll.
No, it doesn't have an effect on Roll. The gatelengths are predefined:
// force gatelength depending on number of triggers
if( triggers < 4 ) {
// number of triggers: 2 3 4 5
const u8 gatelength_tab[4] = { 48, 32, 36, 32 };
// strategy:
// 2 triggers: played within 1 step at 0 and 48
// 3 triggers: played within 1 step at 0, 32 and 64
// 4 triggers: played within 1.5 steps at 0, 36, 72 and 108
// 5 triggers: played within 1.5 steps at 0, 32, 64, 96 and 128
// in addition, scale length (0..95) over next clock counter to consider the selected clock divider
gatelength = (gatelength_tab[triggers-2] * t->step_length) / 96;
}
Quote
-In a Note Parameter Layer, and maybe also in a Chord Layer, activating "FAST" could switch the encoders to octave jumps. I'd find that really useful. What do you people think?
In order to implement such a feature properly, I would have to overwork the concept how encoder speed is handled, and finding a better concept will take some time.
So - only a quick idea or really an important feature?
Currently the FAST button exclusively controls the encoder speed (which is handled by MIOS32) - for this feature, I would have to make an exception when a "Note" or "Chord" layer is selected. It will become complicated and error prone once switching between layers, switching to a menu page, etc. have to be considered as well... therefore a different concept would be required which considers certain layer/parameter type specific constraints.
Quote
-In Drum Mode Trigger Layers. Maybe removing a Gate could also remove the ACCent. And inserting an ACCent could also insert a Gate.
Such a mechanism wouldn't allow you to handle accent and gate separately, which is important whenever you are working with "prepared grooves", which are starting with a small number of gate triggers, and are enriched by more triggers (or at the end: all steps triggered) while the sequence is playing.
I get use of this possibility very often to vary the patterns during a session.
Quote
-Wouldn't it be nice to apply Grooves to the DIN SYNC clock output? ;)
You could simply trigger your drummachine from a J5.A0..A7 gate, controlled from a dedicated track which plays 16 notes at the desired clock rate. The clock rate is defined by the clock divider value and normal/triplet mode.
Now activate a groove style for this track -> done.
Best Regards, Thorsten.