fix(vd960Loop): 修复 g_input_div 重复定义和 tmp_ble_buf 缺失

This commit is contained in:
wangfq
2026-06-25 16:46:45 +08:00
parent d2b132a6ef
commit 7906504e4e
2 changed files with 1 additions and 3 deletions

View File

@@ -40,6 +40,7 @@
volatile uint8_t usart1_rx_dma_status = 0;
Pkg_Uart g_pkg_uart_1 = { 0, 0, 0, "", 0};
Pkg_Uart g_pkg_uart_report = { 0, 0, 0, "", 0};
static uint8_t tmp_ble_buf[BUFF_STACK_SIZE];
/** @addtogroup FreeRTOS_demo
@@ -52,7 +53,6 @@ __IO uint32_t sys_counter = 0;
__IO uint64_t TimingDelayInc;
__IO uint32_t TimingDelayDec;
uint8_t g_input_div = 1;
TaskHandle_t loop_task_handler;
@@ -60,8 +60,6 @@ TaskHandle_t loop_task_handler;
#define WDT_TIMEOUT_MS 3000 // 看门狗超时时间 3秒
void wdt_init(void);
void wdt_feed(void);
uint8_t g_input_div = 1;
tmr_output_config_type tmr_oc_init_structure;