SOLVED > it was IC20, i soldered a 165 instead of a 595.
STM32F4 Core with Orginal Software got from here: mios32/trunk/apps/controllers/blm_scalar
The UI-Hardware is from latigid
Problem is when Powering up, there are lighting following vertical extra LEDs: 1, 5, 9, 13, in green color which is my Color LED
when now sending notes from a other core via midi into the BLM with commandos like following, then the result is not ok…
u8 green = 70;
u8 blue = 32;
u8 cyan = 120;
//the next pairs off Commandos, are isolated code snippeds, they should
//only visualize the 2 states off the LED
///COMMAND///////////////////////////////////////IN REALITY/////
MIOS32_MIDI_SendNoteOn(CCoutPort,0,96,cyan); //cyan
MIOS32_MIDI_SendNoteOn(CCoutPort,0,96,green); //green
MIOS32_MIDI_SendNoteOn(CCoutPort,0,97,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,97,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,98,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,98,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,99,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,99,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,100,green); //green
MIOS32_MIDI_SendNoteOn(CCoutPort,0,100,blue); //cyan
MIOS32_MIDI_SendNoteOn(CCoutPort,0,101,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,101,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,102,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,102,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,103,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,103,blue); //blue
MIOS32_MIDI_SendNoteOn(CCoutPort,0,104,cyan); //cyan
MIOS32_MIDI_SendNoteOn(CCoutPort,0,104,0); //green
MIOS32_MIDI_SendNoteOn(CCoutPort,0,105,blue); //BLUE
MIOS32_MIDI_SendNoteOff(CCoutPort,0,105,0); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,106,cyan); //BLUE
MIOS32_MIDI_SendNoteOff(CCoutPort,0,106,0); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,107,green); //OFF
MIOS32_MIDI_SendNoteOff(CCoutPort,0,107,0); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,108,cyan); //CYAN
MIOS32_MIDI_SendNoteOff(CCoutPort,0,108,0); //GREEN //dont matter if i choose NoteOff or NoteON
MIOS32_MIDI_SendNoteOn(CCoutPort,0,109,green); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,109,0); //OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,110,green); //Both LEDs OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,110,0); //Both LEDs OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,111,green);} //Both LEDs OFF
MIOS32_MIDI_SendNoteOn(CCoutPort,0,111,0);}} //Both LEDs OFF



