@ntstatic
Can you check if the MENU button works correctly in <ALT> mode?
Pressing the MENU button in alt mode must open the main chdk menu.
The WIFI button also needs to be checked, you can do this by selecting the WIFI button as the <ALT> button.
You should also check ModeMap, just like you did for the sx430.
Go to:
Miscellaneous Stuff -> Debug Parameters
set "Debug data display" to [Props] and "Propcase / Param data page" to [5]
In this case, look at propcase 55.
This is currently used modemap.
//TODO
const CapturemodeMap modemap[] = {
{ MODE_AUTO, 32768 },
{ MODE_P, 32773 },
{ MODE_LONG_SHUTTER, 32775 },
{ MODE_PORTRAIT, 32790 },
{ MODE_FIREWORK, 32800 },
{ MODE_LOWLIGHT, 32813 },
{ MODE_SUPER_VIVID, 33330 },
{ MODE_POSTER_EFFECT, 33331 },
{ MODE_FACE_SELF_TIMER, 33332 },
{ MODE_FISHEYE, 33335 },
{ MODE_MINIATURE, 33336 },
{ MODE_TOY_CAMERA, 33339 },
{ MODE_MONOCHROME, 33343 },
};
There are 6 more shooting modes missing. You need to find them if you can.
// Mode 33333 in firmware but not in current modemap
// Mode 33334 in firmware but not in current modemap
// Mode 32778 in firmware but not in current modemap
// Mode 33337 in firmware but not in current modemap
// Mode 33298 in firmware but not in current modemap
// Mode 33299 in firmware but not in current modemap