Midi command

2003-06-16 Thread Chris Apers
Hi, Is it possible to play midi command on OS5 like note on, program change, etc... ? Thanks Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Play Midi Command

2003-03-10 Thread Chris Apers
Hi, How can i play multichannel midi on CliƩ and OS5 devices ? SndDoCmd doesn't seems to support this. Thanks Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Midi command

2003-06-16 Thread Andrew Springman
+0200, you wrote: Hi, Is it possible to play midi command on OS5 like note on, program change, etc... ? Thanks Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/ -- For information on using the Palm Developer Forums

Re: Midi command

2003-06-16 Thread Aaron Ardiri
> Is it possible to play midi command on OS5 like > note on, program change, etc... ? you mean something like this? -- /** * MIDI callback function (native arm) * * @param userData pointer to the MIDI data * @param stream the audio stream * @param buffer audio buffer to writ

Re: Midi command

2003-06-17 Thread Chris Apers
I'd like to play multi-channel midi commands via speaker - Original Message - From: "Andrew Springman" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Monday, June 16, 2003 7:55 PM Subject: Re: Midi command > Yes. Pl

Re: Midi command

2003-06-17 Thread Aaron Ardiri
> I'd like to play multi-channel midi commands via speaker we did this in the very early versions of lemmings :) there is a lookup-table you can use to convert midi notes -> freq values. --- static int freqNote[] = { 0, 8, 9, 9,10,10,11,12, 12,13,14,

Re: Midi command

2003-06-17 Thread Chris Apers
> > I'd like to play multi-channel midi commands via speaker > > we did this in the very early versions of lemmings :) there is > a lookup-table you can use to convert midi notes -> freq values. > > --- > static int freqNote[] = > { > 0, 8, 9, 9,10,10,11,12, >

Re: Midi command

2003-06-17 Thread Aaron Ardiri
> Ok, i can use freqNote to play noteOn command ? study midi a bit - and, see how you can break it down into something a bit more simpler. with the SndDoCmd approach, it will be hard to do multi-channel decently - it'll sound aweful :) > Is there a way to play notes on more than 1 channel on OS