Just a question!

You have a question or need an advice about how to do something? Ask it here!
Post Reply
User avatar
radio42
Site Admin
Posts: 8281
Joined: 05 Apr 2012 16:26
Location: Hamburg, Germany
Contact:
Re: Just a question!

Post by radio42 »

When you use the ASYNC command as the first command, all subsequent commands will be executed asynchronously in a non-blocking mode. I.e. use:

ASYNC
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x30 0x64
SLEEP 3000
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x32 0x64
SLEEP 4000
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x32 0x64
SLEEP 3000
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x30 0x64

Post Reply