mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2026-04-21 06:14:05 +00:00
add command battery
This commit is contained in:
parent
35dfd691a2
commit
be45653c2b
2 changed files with 15 additions and 0 deletions
13
main.c
13
main.c
|
|
@ -1603,6 +1603,18 @@ static void cmd_touchtest(BaseSequentialStream *chp, int argc, char *argv[])
|
|||
|
||||
}
|
||||
|
||||
static void cmd_battery(BaseSequentialStream *chp, int argc, char *argv[])
|
||||
{
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
adc_stop(ADC1);
|
||||
int v = adc_vbat_read(ADC1);
|
||||
chprintf(chp, "%d\r\n", v);
|
||||
touch_start_watchdog();
|
||||
}
|
||||
|
||||
|
||||
static void cmd_frequencies(BaseSequentialStream *chp, int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
|
|
@ -1785,6 +1797,7 @@ static const ShellCommand commands[] =
|
|||
{ "test", cmd_test },
|
||||
{ "touchcal", cmd_touchcal },
|
||||
{ "touchtest", cmd_touchtest },
|
||||
{ "battery", cmd_battery },
|
||||
{ "pause", cmd_pause },
|
||||
{ "resume", cmd_resume },
|
||||
{ "cal", cmd_cal },
|
||||
|
|
|
|||
|
|
@ -315,6 +315,8 @@ int config_recall(void);
|
|||
|
||||
void clear_all_config_prop_data(void);
|
||||
|
||||
int16_t adc_vbat_read(ADC_TypeDef *adc);
|
||||
|
||||
/*
|
||||
* ui.c
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue