re: That said, I still am unsure how to repeatedly increment CC #61 by 11 while CC #29 increments by 1 only when CC #61 reaches ~127 until they both reach 127.
Answer is a spreadsheet and named ticks. Will need one control for MSB, one for LSB, and a super control.
You want to count to 127x127 (=16383) by increments of n x 11
16383/77 = 212.7, so we need 214 rows (213 + the row for zero)
First column just goes 0 to 213
Second column multiplies the first by n * 11, or 77 in this case
Row 214 exceeds 16383, (16401), so we paste in 16383.
Third column is our MSB, so we take the integer of second / 128
Fourth column is second MOD 128.
In MDP2, set up the MSB control, select named ticks, edit named ticks, delete all, then paste in the values from the MSB column
Repeat for the LSB control, pasting in the LSB column.
Create a new knob, select 14 bit Cc, select 214 ticks, Display Min/Max 1/214, and make it the supercontrol of the two controls above. Ensure the MSB control is listed first in the subcontrols pane. You can use named ticks to add appropriate labels to the supercontrol for the time or frequency.