Thanks for the quick reply
So, I've used the example "apps\tutorials\009_dout" should work. In my case it doesn. I've connected 1 led for now and nothing happens. When it starts up the led lits while booting as well as the activity led on the board.
I've added this piece in de APP_Init and the APP_MIDI_NotifyPackage event handler
u8 i;
for i = 0 ; i < 127 ; i++ )
{
MIOS32_DOUT_PinSet(i, 1);
}
Nothing happens when I press a button, also the activity led doesn't flip while MIOS32_BOARD_LED_Set(1, ~MIOS32_BOARD_LED_Get()); is in the handler body.
When I add:
if( midi_package.type == NoteOn && midi_package.chn == Chn1 && midi_package.velocity > 0 )
MIOS32_MIDI_SendCC(port, Chn1, 1, midi_package.velocity);
I receive something back from the MIOS32 in my midi monitor so that handler is activited.
What is happening (or not).
Thanks very much
Ron