From 89b75bae446179a0001f5f561f159b54a51cdb2e Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Thu, 9 Jan 2025 18:50:12 +0800 Subject: [PATCH] new start of P2 --- Core/Inc/sys_conf.h | 6 +- Core/Src/gpio.c | 2 +- Core/Src/stm32wlxx_it.c | 4 +- LoRaWAN/App/lora_app.c | 11 +- STM32CubeIDE/.cproject | 14 +- STM32CubeIDE/.project | 8 - STM32CubeIDE/.settings/language.settings.xml | 8 - .../Release/Application/User/Core/subdir.mk | 83 ++++------ .../Application/User/LoRaWAN/App/subdir.mk | 8 +- .../Application/User/LoRaWAN/Target/subdir.mk | 2 +- .../Application/User/STS/Core/Src/subdir.mk | 6 +- .../Application/User/STS/TOF/App/subdir.mk | 17 +- .../Application/User/STS/TOF/Target/subdir.mk | 2 +- .../User/STS/TOF/vl53l0x/subdir.mk | 16 -- .../User/STS/TOF/vl53l1x_uld/subdir.mk | 8 +- STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk | 2 +- .../Drivers/STM32WLxx_HAL_Driver/subdir.mk | 48 +++--- .../Release/Middlewares/LoRaWAN/subdir.mk | 66 ++++---- .../Release/Middlewares/SubGHz_Phy/subdir.mk | 6 +- STM32CubeIDE/Release/Utilities/subdir.mk | 16 +- STM32CubeIDE/Release/makefile | 151 +++++++----------- STM32CubeIDE/Release/sources.mk | 35 ++-- STS/Core/Inc/yunhorn_sts_prd_conf.h | 2 +- STS/Core/Src/yunhorn_sts_process.c | 8 +- STS/TOF/App/app_tof_peoplecount.c | 37 ++++- 25 files changed, 242 insertions(+), 324 deletions(-) diff --git a/Core/Inc/sys_conf.h b/Core/Inc/sys_conf.h index 241072d..f10502a 100644 --- a/Core/Inc/sys_conf.h +++ b/Core/Inc/sys_conf.h @@ -47,12 +47,12 @@ extern "C" { /** * @brief Verbose level for all trace logs */ -#define VERBOSE_LEVEL VLEVEL_OFF +#define VERBOSE_LEVEL VLEVEL_M /** * @brief Enable trace logs */ -#define APP_LOG_ENABLED 0 +#define APP_LOG_ENABLED 1 /** * @brief Activate monitoring (probes) of some internal RF signals for debug purpose @@ -75,7 +75,7 @@ extern "C" { * @brief Enable/Disable MCU Debugger pins (dbg serial wires) * @note by HW serial wires are ON by default, need to put them OFF to save power */ -#define DEBUGGER_ENABLED 0 +#define DEBUGGER_ENABLED 1 /** * @brief Disable Low Power mode diff --git a/Core/Src/gpio.c b/Core/Src/gpio.c index 1a04042..50f67c6 100644 --- a/Core/Src/gpio.c +++ b/Core/Src/gpio.c @@ -156,7 +156,7 @@ void MX_GPIO_Init(void) GPIO_InitStruct.Pull = GPIO_PULLUP; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; HAL_GPIO_Init(TOF_C_XSHUT_GPIO_Port, &GPIO_InitStruct); - +#endif #if 0 /*Configure GPIO pins : TOF_L_XSHUT_Pin */ GPIO_InitStruct.Pin = TOF_L_XSHUT_Pin; diff --git a/Core/Src/stm32wlxx_it.c b/Core/Src/stm32wlxx_it.c index ece34a8..8a878ab 100644 --- a/Core/Src/stm32wlxx_it.c +++ b/Core/Src/stm32wlxx_it.c @@ -284,7 +284,7 @@ void EXTI4_IRQHandler(void) /* USER CODE END EXTI1_IRQn 1 */ } - +#if defined(O1L)||defined(O6T)||defined(O7) /** * @brief This function handles DMA1 Channel 1 Interrupt. */ @@ -301,7 +301,7 @@ void DMA1_Channel1_IRQHandler(void) /* USER CODE END DMA1_Channel1_IRQn 1 */ } - +#endif /* SPI1 */ /** * @brief This function handles DMA1 Channel 2 Interrupt. diff --git a/LoRaWAN/App/lora_app.c b/LoRaWAN/App/lora_app.c index 6871cd6..4e0e470 100644 --- a/LoRaWAN/App/lora_app.c +++ b/LoRaWAN/App/lora_app.c @@ -541,7 +541,7 @@ void LoRaWAN_Init(void) #if defined(STS_P2)||defined(STS_T6)||defined(L8) - UTIL_SEQ_RegTask((1 << CFG_SEQ_Task_YunhornSTSEventP5), UTIL_SEQ_RFU, STS_YunhornSTSEventP5_Process); + // UTIL_SEQ_RegTask((1 << CFG_SEQ_Task_YunhornSTSEventP5), UTIL_SEQ_RFU, STS_YunhornSTSEventP5_Process); #endif @@ -1243,7 +1243,11 @@ static void OnJoinRequest(LmHandlerJoinParams_t *joinParams) APP_LOG(TS_OFF, VLEVEL_H, "###### U/L FRAME:JOIN | DR:%d | PWR:%d\r\n", joinParams->Datarate, joinParams->TxPower); } - //UTIL_TIMER_Start(&YunhornSTSWakeUpScanTimer); + + // UTIL_TIMER_Start(&YunhornSTSWakeUpScanTimer); + + OnYunhornSTSTxPeriodicityChanged(STS_TxPeriod_sec*1000); + /* USER CODE END OnJoinRequest_1 */ } @@ -1492,8 +1496,9 @@ static void OnRestoreContextRequest(void *nvm, uint32_t nvm_size) */ static void OnYunhornSTSLampBarColorTimerEvent(void *context) { - uint8_t high4=(sts_lamp_bar_color>>4)&0x0f, low4=sts_lamp_bar_color&0x0f; + #if defined(STS_O6)||defined(STS_T6) //||defined(O1L) + uint8_t high4=(sts_lamp_bar_color>>4)&0x0f, low4=sts_lamp_bar_color&0x0f; //UTIL_SEQ_SetTask((1 << CFG_SEQ_Task_YunhornSTSEventP3), CFG_SEQ_Prio_0); UTIL_TIMER_Stop(&STSLampBarColorTimer); diff --git a/STM32CubeIDE/.cproject b/STM32CubeIDE/.cproject index d79866c..21fbd3d 100644 --- a/STM32CubeIDE/.cproject +++ b/STM32CubeIDE/.cproject @@ -99,11 +99,7 @@ -<<<<<<< HEAD - -======= - ->>>>>>> 735cf8c2aa1be8a1a9f9a07734d4c77574425bd4 + @@ -140,7 +136,7 @@