Jump to content

Anonyme-x222

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Anonyme-x222

  1. Well, i would like to add an option in the external control list Mutes By Midi Channel, where you select a CC , and each channel of this cc will mute/unmute one track: ex CC122 ch1 mute track 1, CC122 chl 2 mute track 2, etc...
  2. Hi, I would like to add a remote control option in the external controller section. seq_midi_in.c The function static s32 SEQ_MIDI_IN_Receive_ExtCtrlCC(u8 cc, u8 value) need to be modified like this static s32 SEQ_MIDI_IN_Receive_ExtCtrlCC(u8 cc, u8 channel, u8 value) The call like this: SEQ_MIDI_IN_Receive_ExtCtrlCC(midi_package.cc_number, midi_package.chn, midi_package.value); i will have to add : Mutes By Midi Channel in the const char* ext_ctrl_str[SEQ_MIDI_IN_EXT_CTRL_NUM] = However the mute channel part isn't in a case but directly in the root of the function ? can help ? Thanks in advance, Have a good day, Rgds,
  3. Hi, I would like to add a remote control option in the external controller section. seq_midi_in.c The function static s32 SEQ_MIDI_IN_Receive_ExtCtrlCC(u8 cc, u8 value) need to be modified like this static s32 SEQ_MIDI_IN_Receive_ExtCtrlCC(u8 cc, u8 channel, u8 value) The call like this: SEQ_MIDI_IN_Receive_ExtCtrlCC(midi_package.cc_number, midi_package.chn, midi_package.value); i will have to add : Mutes By Midi Channel in the const char* ext_ctrl_str[SEQ_MIDI_IN_EXT_CTRL_NUM] = However the mute channel part isn't in a case but directly in the root of the function ? can help ? Thanks in advance, Have a good day, Rgds,
×
×
  • Create New...