Jump to content

J5 Gate out Polarity ? ie, V-Trig or S-Trig


Futureman
 Share

Recommended Posts

Is this possible to implement software wise?

I've got a few bits of kit that use the "Short to ground" method to trigger a note (Early Yamaha & Korg Stuff etc)

It would be cool to be able to change the polarity of the gate out, ie... normally it's low, but when a gate is sent out, the signal goes high.... On Early Korg gear, the signal is normally high, but during a gate, the signal goes low.. (A short to ground)

I'm not 100% sure that this can be done via software, but if so it would be ideal..

Failing that, I might slap a few of these (V-trig to S-Trig converters) inside my sequencer..

Regards

Mike

3610_triggermod_gif07e65e5b17019fb0b1e7c

Link to comment
Share on other sites

Yes, see http://svnmios.midibox.org/filedetails.php?repname=svn.mios&path=%2Ftrunk%2Fapps%2Fsequencers%2Fmidibox_seq_v3%2Fsrc%2Fseq_ext.inc

E.g.:


#if DEFAULT_ENABLE_J5_GATES
        movf    GATES, W, BANKED
        xorlw  0xff
        call    J5_IO_Set
#endif
[/code] will invert all pins
[code]
#if DEFAULT_ENABLE_J5_GATES
        movf    GATES, W, BANKED
        xorlw  0x01
        call    J5_IO_Set
#endif

will only invert the first pin

Best Regards, Thorsten.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...