making a PreenFM2 template for my NRPN-capable hardware MIDI controller, i encountered the following issue.
midi messages manual says:
LFO <n> Shape MSB = 1 LSB = 40 + n*4 where 1 <= n <= 3
which results: 40+1*4 =
44 for LFO1, 40 + 2*4 =
48 for LFO2, and 40 + 3*4 =
52 for LFO 3
but according to the manual,
Free Env1 Attack MSB = 1 LSB = 52
same for
LFO <n> Freqency MSB = 1 LSB = 41 + n*4 where 1 <= n <= 3
results: 41+1*4 =
45 for LFO1, 41 + 2*4 =
49 for LFO2, and 41 + 3*4 =
53 for LFO 3
but according to the manual,
Free Env1 Decay MSB = 1 LSB = 53
same for
LFO <n> Bias MSB = 1 LSB = 42 + n*4 where 1 <= n <= 3
results: 42+1*4 =
46 for LFO1, 42 + 2*4 =
50 for LFO2, and 42 + 3*4 =
54 for LFO 3
but according to the manual,
Free Env1 Sustain MSB = 1 LSB = 54
and same for
LFO <n> Key Sync MSB = 1 LSB = 43 + n*4 where 1 <= n <= 3
results: 43+1*4 =
47 for LFO1, 43 + 2*4 =
51 for LFO2, and 43 + 3*4 =
55 for LFO 3
but according to the manual,
Free Env1 Release MSB = 1 LSB = 55
so, the question is: where's the error ?
thanks in advance.