Re: [PD] Sysex out problems (linux only)

2009-07-19 Thread Alex
You could try making it so that you don't send sysex messages on every change.. just poll for changes at a certain rate.. and only sent the most recent change at that rate? -Alex 2009/7/17 András Murányi muran...@gmail.com: 2009/7/8 Alex x37v.a...@gmail.com I think that pd's midi out doesn't

Re: [PD] Sysex out problems (linux only)

2009-07-18 Thread András Murányi
2009/7/8 Alex x37v.a...@gmail.com I think that pd's midi out doesn't take whole sysex messages though, you simply send a stream of bytes. This is how it has been working for me. I created an abstraction which takes a list of bytes and makes it into a sysex message (stream of bytes) [adds

Re: [PD] Sysex out problems (linux only)

2009-07-08 Thread András Murányi
2009/7/8 Martin Peach martin.pe...@sympatico.ca András Murányi wrote: Dear Sirs, I just have never been successful with sysex in Pd and I'm asking for your kind advice. Attached is an example for a long sysex message which goes out on [midiout] (linux only, afaik). The problems I have:

Re: [PD] Sysex out problems (linux only)

2009-07-08 Thread Martin Peach
András Murányi wrote: 2009/7/8 Martin Peach martin.pe...@sympatico.ca mailto:martin.pe...@sympatico.ca András Murányi wrote: Dear Sirs, I just have never been successful with sysex in Pd and I'm asking for your kind advice. Attached is an example for a

Re: [PD] Sysex out problems (linux only)

2009-07-08 Thread Alex
I think that pd's midi out doesn't take whole sysex messages though, you simply send a stream of bytes. This is how it has been working for me. I created an abstraction which takes a list of bytes and makes it into a sysex message (stream of bytes) [adds the sysex start and start and then

[PD] Sysex out problems (linux only)

2009-07-07 Thread András Murányi
Dear Sirs, I just have never been successful with sysex in Pd and I'm asking for your kind advice. Attached is an example for a long sysex message which goes out on [midiout] (linux only, afaik). The problems I have: - sysex gets fragmented (also when nothing is sent out meanwhile by other

Re: [PD] Sysex out problems (linux only)

2009-07-07 Thread Alex
I haven't actually tested sysex out limits, but sysex in is limited to something like 24 byte messages.. here is a thread where i talk about it: http://lists.puredata.info/pipermail/pd-list/2009-01/067372.html It is hard coded into the source. You can modify the source to change the hard coded

Re: [PD] Sysex out problems (linux only)

2009-07-07 Thread András Murányi
2009/7/8 Alex x37v.a...@gmail.com - sysex gets fragmented (also when nothing is sent out meanwhile by other objects). It is always properly terminated with '247' but the content is often truncated. Is this a bug/feature...? What is your best recommendation knowing that my patch is full

Re: [PD] Sysex out problems (linux only)

2009-07-07 Thread Alex
It looks like you may experiencing another thing that i've complained about... pd's alsa midi connects to all MIDI inputs and outputs that it can.. this includes alsa's MIDI through.. so everything that you send out gets echoed back into the input.. SUPER annoying. run aconnect [or easier, though

Re: [PD] Sysex out problems (linux only)

2009-07-07 Thread András Murányi
2009/7/8 Alex x37v.a...@gmail.com It looks like you may experiencing another thing that i've complained about... pd's alsa midi connects to all MIDI inputs and outputs that it can.. this includes alsa's MIDI through.. so everything that you send out gets echoed back into the input.. SUPER