From 681567d6d1bd2894eccde5b22a948eac7d3a22a5 Mon Sep 17 00:00:00 2001 From: chen <15335560115@163.com> Date: 星期五, 20 九月 2024 18:38:25 +0800 Subject: [PATCH] 对应发货标签V1.6,更改版本号为V1.1,与一期标签分开,更改了tag的uwb测距配置与DW1000通讯,并将测距接包逻辑单次接包改为打开循环接收 --- keil/include/board/board.h | 19 ++----------------- 1 files changed, 2 insertions(+), 17 deletions(-) diff --git a/keil/include/board/board.h b/keil/include/board/board.h index acfa2f3..640d879 100644 --- a/keil/include/board/board.h +++ b/keil/include/board/board.h @@ -86,7 +86,7 @@ #define CALIB_CH5 1 #define CALIB_CH2 2 #define CALIB_CH_NUM 3 -#define SLEEP_TIMER_NUM 496 + #define CALIB_CH(x) (x == 9 ? 0 : (x == 5 ? 1 : 2)) enum BOARD_NVM_ITEM_ID_T @@ -193,12 +193,6 @@ */ void board_5V_input_init(GPIO_IRQ_HANDLER_T irq_handler); /** - * @brief Configure button GPIO. - * @param[in] irq_handler accelerate input interrupt process handler - * - */ -void board_acceleration_detection_init(GPIO_IRQ_HANDLER_T irq_handler); -/** * @brief Configure LED GPIO. * */ @@ -242,16 +236,7 @@ * */ void board_restore_from_power_down(void); -/** - * @brief Change uart1 gps to debug. - * - */ -void uart1_change_from_gps_to_debug(void); -/** - * @brief Change uart1 debug to gps. - * - */ -void uart1_change_from_debug_to_gps(void); + #if defined(__cplusplus) } #endif -- Gitblit v1.9.3