1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

CMS power menu

Menu including:
- Voltage meter selection
- Current meter selection
- Max cell voltage (moved from MISC menu)
- Voltage scale adjust (moved from MISC menu)
- ADC current scale and offset adjust
- Virtual current scale and offset adjust
This commit is contained in:
Dan Nixon 2017-08-02 11:57:09 +01:00
parent 8738e7d623
commit 22874d8ba2
10 changed files with 170 additions and 20 deletions

View file

@ -43,6 +43,7 @@
#include "cms/cms_menu_osd.h"
#include "cms/cms_menu_ledstrip.h"
#include "cms/cms_menu_misc.h"
#include "cms/cms_menu_power.h"
// VTX supplied menus
@ -115,6 +116,7 @@ static OSD_Entry menuFeaturesEntries[] =
#ifdef USE_LED_STRIP
{"LED STRIP", OME_Submenu, cmsMenuChange, &cmsx_menuLedstrip, 0},
#endif // LED_STRIP
{"POWER", OME_Submenu, cmsMenuChange, &cmsx_menuPower, 0},
{"BACK", OME_Back, NULL, NULL, 0},
{NULL, OME_END, NULL, NULL, 0}
};