I want to know how or what changes have been made since v 2.5.4 because I'm having a problem with a MIDI interface controling Modul8 in v 2.5.7.
With a custom MIDI interface I control a few interface elements, one of which is the direction of playback in the "PLAY" section of the layers panel.
in v 2.5.4 we used to send a command that would result in the direction "forward" and another command that would result in the direction "reverse".
in v 2.5.7 the same commands seem now to toggle between directions wether we send "forward" or "reverse".
For example, if I send the command "forward", then "forward" again, the result is "reverse" whereas in v 2.5.4 the result was "forward"...
I'm attaching an e-mail from the programmer about the source code of the custom MIDI interface, I would really like to understand the changes in v 2.5.7 so that we either could burn another chip to get our interface behavior back or something.
Selon le source code que j'ai ici le bouton a trois états :
Fwd, Still et Rev
Les commandes qui sont envoyées dans chaque état sont les suivantes :
Fwd : CC#24 = 127 // Opacity = 100%
CC#14 = 0 // Send direction = FWD
CC#23 = SPEED // Send speed
Still : CC#23 = 0 // Speed = MINIMUM
CC#24 = 50 // Opacity = 50%
Rev : CC#24 = 127 // Opacity = 100%
CC#14 = 100 // Send direction = REV
CC#23 = 127 // Send speed = MAX
La routine est la suivante :
Est-ce que Still est enfoncé?
Oui, était-il déjà enfoncé?
Oui, do nothing...
Non, alors envoie la commande Still
Non, Est-ce que Fwd est enfoncé ?
Oui, Était-il déjà enfoncé ?
Oui, do nothing ...
Non, alors envoie la commande Fwd
Non, Est-ce que Rev est enfoncé ?
Oui, était-il déjà enfoncé ?
Oui, do nothing ...
Non, alors envoie la commande Rev
Non, Loop from the top
Thanks!