From 5ee4fd97245fed0d45fb60d1aa38cca83e788ed5 Mon Sep 17 00:00:00 2001
From: zhangbo <zhangbo@qq.com>
Date: 星期二, 20 五月 2025 16:13:14 +0800
Subject: [PATCH] 修改了计步逻辑还有蓝牙上传逻辑

---
 keil/include/components/algo/inc/lib_aoa.h |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/keil/include/components/algo/inc/lib_aoa.h b/keil/include/components/algo/inc/lib_aoa.h
index a82a8f4..258205b 100644
--- a/keil/include/components/algo/inc/lib_aoa.h
+++ b/keil/include/components/algo/inc/lib_aoa.h
@@ -78,6 +78,13 @@
 
 #endif
 
+/* for 4 symbol based switching, max size is 2*11*256 */
+/* for segment based switching, max size is 4*11*256 = 11K */
+/* if set 11k, it has memory issue when run time */
+/* we may not use segment based switching */
+#define AOA_STS_SIZE (2 * 11 * 32 + 1)
+extern float g_sts_lsp_result[AOA_STS_SIZE];
+
 // (aux_mode << 4) | (algo_option)
 enum AOA_AUX_OPT_T
 {

--
Gitblit v1.9.3