Csound Csound-dev Csound-tekno Search About

[Csnd] Odd MIDI Receive Message

Date2013-10-02 18:26
FromJim Aikin
Subject[Csnd] Odd MIDI Receive Message
I'm using midiin to bring real-time MIDI CC messages into Csound 6. When I
send a message with a CC number above 111, the Console (in CsoundQt 0.8 for
Windows) reports, "ctrl 117 has no exclus list" (or whatever CC number).

Can anyone tell me what this means? Is there a way to suppress it? The CC
messages are received properly, so there doesn't seem to be an error -- I'm
just getting an apparently pointless output warning that clutters up the
Console.

Thanks for any tips on this!



--
View this message in context: http://csound.1045644.n5.nabble.com/Odd-MIDI-Receive-Message-tp5728015.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-10-02 20:27
FromSteven Yi
SubjectRe: [Csnd] Odd MIDI Receive Message
This looks like it's coming from the MIDI driver (in
InOut/midirecv.c).  The code says:

      if (n < 121) {          /* for ctrlr 111, 112, ... chk inexclus lists */
        if ((csound->oparms->msglevel & 7) == 7)
          csound->Message(csound, Str("ctrl %d has no exclus list\n"), (int) n);
        break;
      }

So if you modified the message level Csound runs with, you could turn
it off.  I don't know though what's the purpose of this message and am
not familiar with what part of the MIDI spec this is supposed to
handle(I find looking at MIDI handling code gives me a headache :P).

On Wed, Oct 2, 2013 at 1:26 PM, Jim Aikin  wrote:
> I'm using midiin to bring real-time MIDI CC messages into Csound 6. When I
> send a message with a CC number above 111, the Console (in CsoundQt 0.8 for
> Windows) reports, "ctrl 117 has no exclus list" (or whatever CC number).
>
> Can anyone tell me what this means? Is there a way to suppress it? The CC
> messages are received properly, so there doesn't seem to be an error -- I'm
> just getting an apparently pointless output warning that clutters up the
> Console.
>
> Thanks for any tips on this!
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Odd-MIDI-Receive-Message-tp5728015.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>             https://sourceforge.net/p/csound/tickets/
> csound5:
>             https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>

Date2013-10-02 20:31
Fromlaurence
SubjectRe: [Csnd] Odd MIDI Receive Message
Previously, Oeyvind suggested putting  -+raw_controller_mode=1 on the commandline which suppressed the message.

laurence


On 3 October 2013 03:27, Steven Yi <stevenyi@gmail.com> wrote:
This looks like it's coming from the MIDI driver (in
InOut/midirecv.c).  The code says:

      if (n < 121) {          /* for ctrlr 111, 112, ... chk inexclus lists */
        if ((csound->oparms->msglevel & 7) == 7)
          csound->Message(csound, Str("ctrl %d has no exclus list\n"), (int) n);
        break;
      }

So if you modified the message level Csound runs with, you could turn
it off.  I don't know though what's the purpose of this message and am
not familiar with what part of the MIDI spec this is supposed to
handle(I find looking at MIDI handling code gives me a headache :P).

On Wed, Oct 2, 2013 at 1:26 PM, Jim Aikin <midiguru23@sbcglobal.net> wrote:
> I'm using midiin to bring real-time MIDI CC messages into Csound 6. When I
> send a message with a CC number above 111, the Console (in CsoundQt 0.8 for
> Windows) reports, "ctrl 117 has no exclus list" (or whatever CC number).
>
> Can anyone tell me what this means? Is there a way to suppress it? The CC
> messages are received properly, so there doesn't seem to be an error -- I'm
> just getting an apparently pointless output warning that clutters up the
> Console.
>
> Thanks for any tips on this!
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Odd-MIDI-Receive-Message-tp5728015.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>             https://sourceforge.net/p/csound/tickets/
> csound5:
>             https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug trackers
csound6:
            https://sourceforge.net/p/csound/tickets/
csound5:
            https://sourceforge.net/p/csound/bugs/
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




Date2013-10-03 05:05
FromJim Aikin
Subject[Csnd] Re: Odd MIDI Receive Message
> Previously, Oeyvind suggested putting  -+raw_controller_mode=1 on the
commandline
> which suppressed the message.

Thanks, Laurence. That does indeed get rid of it.

--JA



--
View this message in context: http://csound.1045644.n5.nabble.com/Odd-MIDI-Receive-Message-tp5728015p5728040.html
Sent from the Csound - General mailing list archive at Nabble.com.