From 70a49e3f9866bde609ab71268833f8f1d7a153a2 Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Fri, 7 Mar 2025 13:55:15 +0800 Subject: [PATCH] lorawan to 1.1.1 instead of 1.0.4, as923-1-jp to as923-1 for hk --- LoRaWAN/App/lora_app.c | 5 ++--- LoRaWAN/Target/lorawan_conf.h | 4 ++-- STM32CubeIDE/.cproject | 3 +++ STM32CubeIDE/.settings/language.settings.xml | 4 ++-- .../Debug/Application/User/Core/subdir.mk | 9 ++------- .../Application/User/LoRaWAN/App/subdir.mk | 2 +- .../Application/User/LoRaWAN/Target/subdir.mk | 2 +- .../Application/User/STS/TOF/App/subdir.mk | 2 +- .../Application/User/STS/TOF/Target/subdir.mk | 2 +- .../Debug/Application/User/Startup/subdir.mk | 2 +- STM32CubeIDE/Debug/Drivers/CMSIS/subdir.mk | 2 +- .../Drivers/STM32WLxx_HAL_Driver/subdir.mk | 2 +- .../Debug/Middlewares/LoRaWAN/subdir.mk | 2 +- .../Debug/Middlewares/SubGHz_Phy/subdir.mk | 2 +- STM32CubeIDE/Debug/Utilities/subdir.mk | 2 +- STM32CubeIDE/Debug/makefile | 2 +- STM32CubeIDE/Debug/objects.mk | 2 +- STM32CubeIDE/Debug/sources.mk | 2 +- .../Release/Application/User/Core/subdir.mk | 2 +- .../Application/User/LoRaWAN/App/subdir.mk | 2 +- .../Application/User/LoRaWAN/Target/subdir.mk | 2 +- .../Application/User/STS/Core/Src/subdir.mk | 2 +- .../Application/User/STS/TOF/App/subdir.mk | 2 +- .../Application/User/STS/TOF/Target/subdir.mk | 2 +- .../User/STS/TOF/vl53l0x/subdir.mk | 2 +- .../Application/User/Startup/subdir.mk | 2 +- .../Release/Drivers/BSP/53L8A1/subdir.mk | 2 +- .../Release/Drivers/BSP/Components/subdir.mk | 2 +- STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk | 2 +- .../Drivers/STM32WLxx_HAL_Driver/subdir.mk | 2 +- .../Release/Middlewares/LoRaWAN/subdir.mk | 2 +- .../Release/Middlewares/SubGHz_Phy/subdir.mk | 2 +- STM32CubeIDE/Release/Utilities/subdir.mk | 2 +- STM32CubeIDE/Release/WLE5CC_NODE_STS.bin | Bin 86244 -> 102924 bytes STM32CubeIDE/Release/WLE5CC_NODE_STS.elf | Bin 162716 -> 190552 bytes STM32CubeIDE/Release/makefile | 6 ++++-- STM32CubeIDE/Release/objects.mk | 2 +- STM32CubeIDE/Release/sources.mk | 4 +++- STM32CubeIDE/WLE5CC_NODE_STS.launch | 4 +++- 39 files changed, 50 insertions(+), 47 deletions(-) diff --git a/LoRaWAN/App/lora_app.c b/LoRaWAN/App/lora_app.c index 63c3b8c..00d11a4 100644 --- a/LoRaWAN/App/lora_app.c +++ b/LoRaWAN/App/lora_app.c @@ -1111,9 +1111,8 @@ static void OnJoinRequest(LmHandlerJoinParams_t *joinParams) } AppData.Port = 1; AppData.BufferSize = 16; - UTIL_MEM_cpy_8((uint8_t*)AppData.Buffer, (uint8_t *)"YUNHORN168", 10); - UTIL_MEM_cpy_8((uint8_t*)AppData.Buffer+10, (uint8_t *)(uint8_t*)YUNHORN_STS_PRD_STRING, sizeof(YUNHORN_STS_PRD_STRING)); - AppData.BufferSize = sizeof(YUNHORN_STS_PRD_STRING)+10; + UTIL_MEM_cpy_8((uint8_t*)AppData.Buffer, (uint8_t*)YUNHORN_STS_PRD_STRING, sizeof(YUNHORN_STS_PRD_STRING)); + AppData.BufferSize = (sizeof(YUNHORN_STS_PRD_STRING)-1); LmHandlerParams.IsTxConfirmed = true; LmHandlerErrorStatus_t status = LmHandlerSend(&AppData, LmHandlerParams.IsTxConfirmed, false); if (status ==LORAMAC_HANDLER_SUCCESS ) LmHandlerParams.IsTxConfirmed = false; diff --git a/LoRaWAN/Target/lorawan_conf.h b/LoRaWAN/Target/lorawan_conf.h index 9ddccb0..31b262b 100644 --- a/LoRaWAN/Target/lorawan_conf.h +++ b/LoRaWAN/Target/lorawan_conf.h @@ -58,7 +58,7 @@ extern "C" { * - 0x01000400: Link Layer TS001-1.0.4 + Regional Parameters RP002-1.0.1 * - 0x01010100: soon available ... */ -#define LORAMAC_SPECIFICATION_VERSION 0x01000400 +#define LORAMAC_SPECIFICATION_VERSION 0x01010100 /*! * @brief Enable the additional LoRaWAN packages @@ -109,7 +109,7 @@ extern "C" { * - CHANNEL_PLAN_GROUP_AS923_4 (Freq offset = -5.90 MHz / Freq range = 917-920MHz) * - CHANNEL_PLAN_GROUP_AS923_1_JP (Freq offset = 0.0 MHz / Freq range = 920.6-923.4MHz) */ -#define REGION_AS923_DEFAULT_CHANNEL_PLAN CHANNEL_PLAN_GROUP_AS923_1_JP +#define REGION_AS923_DEFAULT_CHANNEL_PLAN CHANNEL_PLAN_GROUP_AS923_1 /*! * @brief Limits the number usable channels by default for AU915, CN470 and US915 regions diff --git a/STM32CubeIDE/.cproject b/STM32CubeIDE/.cproject index 8d70c96..06c6d58 100644 --- a/STM32CubeIDE/.cproject +++ b/STM32CubeIDE/.cproject @@ -22,6 +22,7 @@