MB-6582 left/right buttons switched

Like many others, I used a frontpanel based on Wilba’s design for my MB-6582. The labeling/engraving of the left/right (or increment/decrement) buttons (< >) did not match the default settings in the firmware, as it was switched (pressing left button moves right) . So I changed it in the setup_mb6582.asm and recompiled the firmware.

 

Before:

DIN_ENTRY CS_MENU_BUTTON_Inc, 16+4, 1 ; **new** Select B button
DIN_ENTRY CS_MENU_BUTTON_Dec, 16+4, 2 ; **new** Select C button

 

After:

DIN_ENTRY CS_MENU_BUTTON_Inc, 16+4, 2 ; **new** Select B button
DIN_ENTRY CS_MENU_BUTTON_Dec, 16+4, 1 ; **new** Select C button

 

I attached the modified .hex-file based on the recent version V2.044 for other users to save the recompile step. Maybe this can be done in the next firmware release (if there is any)…