diff --git a/Core/Inc/sys_conf.h b/Core/Inc/sys_conf.h index f10502a..241072d 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_M +#define VERBOSE_LEVEL VLEVEL_OFF /** * @brief Enable trace logs */ -#define APP_LOG_ENABLED 1 +#define APP_LOG_ENABLED 0 /** * @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 1 +#define DEBUGGER_ENABLED 0 /** * @brief Disable Low Power mode diff --git a/LoRaWAN/App/lora_app.c b/LoRaWAN/App/lora_app.c index d7e078e..609bb82 100644 --- a/LoRaWAN/App/lora_app.c +++ b/LoRaWAN/App/lora_app.c @@ -607,7 +607,7 @@ void LoRaWAN_Init(void) void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) { - static uint8_t prev_color =STS_BLUE; + switch (GPIO_Pin) { case BUT1_Pin: @@ -995,15 +995,16 @@ static void SendTxData(void) #ifdef CAYENNE_LPP uint8_t channel = 0; #else - + uint32_t i = 0; +#if 0 uint16_t pressure = 0; int16_t temperature = 0; uint16_t humidity = 0; - uint32_t i = 0; + int32_t latitude = 0; int32_t longitude = 0; uint16_t altitudeGps = 0; - +#endif #endif /* CAYENNE_LPP */ EnvSensors_Read(&sensor_data); diff --git a/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.bin b/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.bin new file mode 100644 index 0000000..624032d Binary files /dev/null and b/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.bin differ diff --git a/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.elf b/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.elf new file mode 100644 index 0000000..3fe2509 Binary files /dev/null and b/STM32CubeIDE/Release/STS_L8_PWH_F2_20241211.elf differ diff --git a/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin b/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin index 7ca45e9..624032d 100644 Binary files a/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin and b/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin differ diff --git a/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf b/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf index d2c7d3f..3fe2509 100644 Binary files a/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf and b/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf differ diff --git a/STS/Core/Inc/yunhorn_sts_sensors.h b/STS/Core/Inc/yunhorn_sts_sensors.h index fc3927f..1b91589 100644 --- a/STS/Core/Inc/yunhorn_sts_sensors.h +++ b/STS/Core/Inc/yunhorn_sts_sensors.h @@ -502,7 +502,7 @@ void OnSensor4StateChanged(void); void OnSensorRSS3AStateChanged(void); void OnSensorRSS3BStateChanged(void); void OnSensorRSS3CStateChanged(void); - +void YunhornSTSDurationCheckTimer(void); void OnSensorL8AStateChanged(void); void OnSensorL8BStateChanged(void); void OnSensorL8CStateChanged(void);