From 9e334e88f1d1d7aeb89f38ff72f4ae3dca078762 Mon Sep 17 00:00:00 2001 From: yincheng.zhong <634916154@qq.com> Date: 星期日, 16 三月 2025 16:58:50 +0800 Subject: [PATCH] 外包开发完ntrip,支持shell配置ID,测试ID正常,ntrip正常 --- keil/include/drivers/mk_adc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keil/include/drivers/mk_adc.c b/keil/include/drivers/mk_adc.c index e6c3dbf..c873c6b 100644 --- a/keil/include/drivers/mk_adc.c +++ b/keil/include/drivers/mk_adc.c @@ -380,7 +380,7 @@ { // enable ADC struct ADC_CFG_T vs_adc_cfg; - vs_adc_cfg.mode = ADC_MODE_SINGLE; /* Selected single conversion mode */ + vs_adc_cfg.mode = ADC_MODE_CONTINUE; /* Selected single conversion mode */ vs_adc_cfg.clk_sel = ADC_CLK_HIGH; /* Selected 62.4M high speed clock */ vs_adc_cfg.vref_sel = ADC_SEL_VREF_INT; /* Using internal reference voltage (1.2V)*/ vs_adc_cfg.rate = 1000; /* ADC works at high frequency system clock, the maximum sampling rate is 2M */ @@ -408,7 +408,7 @@ static void adc_continue_callback(void *data, uint32_t number) { - LOG_INFO(TRACE_MODULE_APP, "Chip adc callback %d degree\r\n", data); +// LOG_INFO(TRACE_MODULE_APP, "Chip adc callback %d degree\r\n", data); } int16_t battery_monitor_get(void) { -- Gitblit v1.9.3