Jump to content

Recommended Posts

Posted

Would it be possible to implement line continuation character in NGR?

I'm wanting to send a long Sysex message which I would like to type over multiple lines for clarity.

Here's a shorter example:

send SysEx OUT3 0xf0 0x00 0x01 0x00 0x01 0x00 0x7f 0x00 0x10 16 0xf7

but 

 

send SysEx OUT3 0xf0 0x00 0x01 0x00 \
                0x01 0x00 0x7f 0x00 \
                0x10 16   0xf7

doesn't work.

Posted

I worked around this by triggering a SENDER.

EVENT_SENDER  id=102  type=SysEx ports=1000001000000000 stream="0xf0 0x00 0x01 0x00 0x01 \
         0x00 0x00 0x00 0x00 10 \
         0x00 0x00 0x01 0x34 10 \
         0xf7"    

from the NGR:

if ^section == 6
trigger SENDER:102
endif

The problem is now that there is a strict limit on the length of the Sysex stream.

It seems to fail to find the SENDER if the stream is a bit longer than the one shown above.

Is there a way of sending larger Sysex messages?

Posted
The problem is now that there is a strict limit on the length of the Sysex stream.

It seems to fail to find the SENDER if the stream is a bit longer than the one shown above.

 

I'm surprised!

The maximum stream size is 128 bytes.

 

Did you get an error message while loading the .NGC file?

Or was this just an assumption, but the reason why longer SysEx streams can't be sent (or received at the destination?) is located somewhere else?

 

Best Regards, Thorsten.

Posted
Would it be possible to implement line continuation character in NGR?

 

Working again in v1.026

 

Best Regards, Thorsten.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...