From 7d13fbde75b58ff4c9deaef95ca0c03a1083f8e8 Mon Sep 17 00:00:00 2001 From: WXK <287788329@qq.com> Date: 星期五, 29 八月 2025 10:26:55 +0800 Subject: [PATCH] 1.9,加入电量新计算方法 测试电池能干多久问题 目前1s检测一下adc --- keil/include/board/board.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/keil/include/board/board.c b/keil/include/board/board.c index 7b76cff..02fffc8 100644 --- a/keil/include/board/board.c +++ b/keil/include/board/board.c @@ -474,7 +474,14 @@ io_pin_mux_set(IO_PIN_7, IO_FUNC0); gpio_pin_set_dir( IO_PIN_7, GPIO_DIR_OUT, 0); io_pull_set(IO_PIN_7 , IO_PULL_DOWN, IO_PULL_UP_LEVEL4); - + io_pin_mux_set(IO_PIN_11, IO_FUNC0); + gpio_pin_set_dir( IO_PIN_11, GPIO_DIR_OUT, 0); + io_pull_set(IO_PIN_11 , IO_PULL_DOWN, IO_PULL_UP_LEVEL4); + io_pin_mux_set(IO_PIN_12, IO_FUNC0); + gpio_pin_set_dir( IO_PIN_12, GPIO_DIR_OUT, 0); + io_pull_set(IO_PIN_12 , IO_PULL_DOWN, IO_PULL_UP_LEVEL4); + gpio_pin_set(IO_PIN_11); + gpio_pin_set(IO_PIN_12); } void board_configure(void) { -- Gitblit v1.9.3