From 626ffc76b4e8c6e16e3100f8aa4c46c1aae66930 Mon Sep 17 00:00:00 2001 From: yincheng.zhong <634916154@qq.com> Date: 星期四, 07 三月 2024 09:38:50 +0800 Subject: [PATCH] V1.6 --- Src/radio/Lora.h | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Src/radio/Lora.h b/Src/radio/Lora.h index 2e04b76..e5ac67b 100644 --- a/Src/radio/Lora.h +++ b/Src/radio/Lora.h @@ -17,14 +17,31 @@ void SwitchLoraSettingstest(uint32_t freq,uint8_t sf); uint8_t GetLoraBufferAndLen(uint8_t* buffer,uint16_t* lp_count); uint16_t GetLoraSyncCount(void); -#define SYNC_CHANNEL_FRQ 469 -#define SYNC_CHANNEL_SF 7 +#define TEST_FREQ +#ifdef TEST_FREQ + #define LORA_UPCHANNEL_FRQ 456 + #define LORA_UPCHANNEL_SF 7 -#define UWB_CHANNEL_FRQ 460 -#define UWB_CHANNEL_SF 5 + #define SYNC_CHANNEL_FRQ 457 + #define SYNC_CHANNEL_SF 7 + + #define UWB_CHANNEL_FRQ 450 + #define UWB_CHANNEL_SF 5 +#else + #define LORA_UPCHANNEL_FRQ 476 + #define LORA_UPCHANNEL_SF 7 + + #define SYNC_CHANNEL_FRQ 477 + #define SYNC_CHANNEL_SF 7 + + #define UWB_CHANNEL_FRQ 470 + #define UWB_CHANNEL_SF 5 +#endif #define APP2_ADRESS 0X8012800 #define APP1_ADRESS 0X8005000 #define APP_SIZE 0XAB00 + +#define APP_1OR2_ADRESS 0x8004B38 #endif -- Gitblit v1.9.3