1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Added calibration menu to CMS.

This commit is contained in:
mikeller 2019-11-16 12:24:49 +13:00 committed by Michael Keller
parent c6e5882dd9
commit cedcf2d7e2
41 changed files with 387 additions and 143 deletions

View file

@ -224,6 +224,7 @@ static CMS_Menu cmsx_menuPid = {
.onEnter = cmsx_PidOnEnter,
.onExit = cmsx_PidWriteback,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuPidEntries
};
@ -291,6 +292,7 @@ static CMS_Menu cmsx_menuRateProfile = {
.onEnter = cmsx_RateProfileOnEnter,
.onExit = cmsx_RateProfileWriteback,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuRateProfileEntries
};
@ -350,6 +352,7 @@ static CMS_Menu cmsx_menuLaunchControl = {
.onEnter = cmsx_launchControlOnEnter,
.onExit = cmsx_launchControlOnExit,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuLaunchControlEntries,
};
#endif
@ -496,6 +499,7 @@ static CMS_Menu cmsx_menuProfileOther = {
.onEnter = cmsx_profileOtherOnEnter,
.onExit = cmsx_profileOtherOnExit,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuProfileOtherEntries,
};
@ -564,6 +568,7 @@ static CMS_Menu cmsx_menuFilterGlobal = {
.onEnter = cmsx_menuGyro_onEnter,
.onExit = cmsx_menuGyro_onExit,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuFilterGlobalEntries,
};
@ -652,6 +657,7 @@ static CMS_Menu cmsx_menuDynFilt = {
.onEnter = cmsx_menuDynFilt_onEnter,
.onExit = cmsx_menuDynFilt_onExit,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuDynFiltEntries,
};
@ -713,6 +719,7 @@ static CMS_Menu cmsx_menuFilterPerProfile = {
.onEnter = cmsx_FilterPerProfileRead,
.onExit = cmsx_FilterPerProfileWriteback,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuFilterPerProfileEntries,
};
@ -784,6 +791,7 @@ CMS_Menu cmsx_menuCopyProfile = {
.onEnter = cmsx_menuCopyProfile_onEnter,
.onExit = NULL,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuCopyProfileEntries,
};
@ -822,6 +830,7 @@ CMS_Menu cmsx_menuImu = {
.onEnter = cmsx_menuImu_onEnter,
.onExit = cmsx_menuImu_onExit,
.checkRedirect = NULL,
.onDisplayUpdate = NULL,
.entries = cmsx_menuImuEntries,
};