I have set up my lxr to be triggered by a midi controller. Everything works fine. I hit the record button and my selected track is being recorded. But ONLY the selected track. I would like to record on ALL tracks at once.
I try to record ALL tracks at once, triggering LXR voice's with midi. ONLY the selected track is recorded. It would be cool... To record the selected track in "voice mode" and record all the track in "perf mode"… Is this possible?
Thanks, Perhaps look in (you certainly don't need me to know it, I try to see if I understand a bit of the code): void seq_triggerVoice(uint8_t voiceNr, uint8_t vol, uint8_t note) void seq_recordAutomation(uint8_t voice, uint8_t dest, uint8_t value) void seq_addNote(uint8_t trackNr,uint8_t vel, uint8_t note) Reading this in the code, it seem's that when the record mode is on, in seq_recordAutomation and seq_addNote the behavior depends of the selected track or voice. In seq_triggerVoice the record mode isn't in any condition. It could explain why the record isn't made on other voices. Perhaps it's a choice to be sure that the LXR records things in time, without having to listen on what is coming on all voices?
Comments
Perhaps look in (you certainly don't need me to know it, I try to see if I understand a bit of the code):
void seq_triggerVoice(uint8_t voiceNr, uint8_t vol, uint8_t note)
void seq_recordAutomation(uint8_t voice, uint8_t dest, uint8_t value)
void seq_addNote(uint8_t trackNr,uint8_t vel, uint8_t note)
Reading this in the code, it seem's that when the record mode is on, in seq_recordAutomation and seq_addNote the behavior depends of the selected track or voice. In seq_triggerVoice the record mode isn't in any condition. It could explain why the record isn't made on other voices. Perhaps it's a choice to be sure that the LXR records things in time, without having to listen on what is coming on all voices?