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/LoRaWAN/App/lora_app.c b/LoRaWAN/App/lora_app.c index 26deaf9..79c589d 100644 --- a/LoRaWAN/App/lora_app.c +++ b/LoRaWAN/App/lora_app.c @@ -1192,7 +1192,7 @@ static void SendTxData(void) #if defined(L8) //AppData.Buffer[i++] = 4; - +#if 0 if ((fhmos_data.state_fall ==3)||(fhmos_data.state_occupancy ==3)||(fhmos_data.state_human_movement ==3)) { AppData.Buffer[i++] = 10; @@ -1222,7 +1222,10 @@ static void SendTxData(void) AppData.Buffer[i++] = 0xff&(fhmos_data.time_stamp_motionless_confirmed); } - } else { + } else +#endif + { + AppData.Buffer[i++] = 9; AppData.Buffer[i++] = 0x01; AppData.Buffer[i++] = fhmos_data.state_fall; diff --git a/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin b/STM32CubeIDE/Release/WLE5CC_NODE_STS.bin index 7bcc307..a163f66 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 c92d304..23354ea 100644 Binary files a/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf and b/STM32CubeIDE/Release/WLE5CC_NODE_STS.elf differ diff --git a/STS/Core/Src/yunhorn_sts_process.c b/STS/Core/Src/yunhorn_sts_process.c index a958c9e..167595e 100644 --- a/STS/Core/Src/yunhorn_sts_process.c +++ b/STS/Core/Src/yunhorn_sts_process.c @@ -1991,6 +1991,12 @@ void STS_FHMOS_sensor_upload_map(uint8_t map_index) tstbuf[i++] = (uint8_t) (fhmos_gesture_bitmap[5]); tstbuf[i++] = (uint8_t) (fhmos_gesture_bitmap[6]); tstbuf[i++] = (uint8_t) (fhmos_gesture_bitmap[7]); + // date and time stamp of event + // fhmos_data.time_stamp_fall_confirmed + tstbuf[i++] = (uint8_t) 0xff&(fhmos_data.time_stamp_fall_confirmed>>24); + tstbuf[i++] = (uint8_t) 0xff&(fhmos_data.time_stamp_fall_confirmed>>16); + tstbuf[i++] = (uint8_t) 0xff&(fhmos_data.time_stamp_fall_confirmed>>8); + tstbuf[i++] = (uint8_t) 0xff&(fhmos_data.time_stamp_fall_confirmed); sts_fhmos_bitmap_pending = 2; diff --git a/STS/TOF/App/app_tof.c b/STS/TOF/App/app_tof.c index eac7f78..edddc5c 100644 --- a/STS/TOF/App/app_tof.c +++ b/STS/TOF/App/app_tof.c @@ -330,7 +330,7 @@ uint16_t MX_TOF_Ranging_Process(void) // int status = VL53L8A1_RANGING_SENSOR_GetDistance(VL53L8A1_DEV_CENTER, &Result); // printf("\r| 27 | 28 | 35 | 36 |\r\n"); - for (uint8_t k=0; k<10; k++) + for (uint8_t k=0; k<1; k++) { STS_TOF_L8_Process(); @@ -358,7 +358,7 @@ uint16_t MX_TOF_Ranging_Process(void) APP_LOG(TS_OFF, VLEVEL_M, "\n\r"); - range_distance /=40; + range_distance /=4; APP_LOG(TS_OFF, VLEVEL_M, "| %u mm\r\n", (uint16_t)range_distance); return (uint16_t) range_distance;