From aab333233008ba9cd1bece893529eeca9425f74d Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Wed, 18 Sep 2024 20:58:23 +0800 Subject: [PATCH] wip not good so far --- LoRaWAN/App/lora_app.c | 12 +++++++----- STS/TOF/App/app_tof_peoplecount.c | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/LoRaWAN/App/lora_app.c b/LoRaWAN/App/lora_app.c index b02c521..5cfa7fd 100644 --- a/LoRaWAN/App/lora_app.c +++ b/LoRaWAN/App/lora_app.c @@ -471,21 +471,22 @@ void LoRaWAN_Init(void) /* Init Info table used by LmHandler*/ LoraInfo_Init(); - + APP_LOG(TS_OFF, VLEVEL_M, "\n start 1\n"); /* Init the Lora Stack*/ LmHandlerInit(&LmHandlerCallbacks, APP_VERSION); LmHandlerConfigure(&LmHandlerParams); - + APP_LOG(TS_OFF, VLEVEL_M, "\n start 2\n"); /* USER CODE BEGIN LoRaWAN_Init_2 */ UTIL_TIMER_Start(&JoinLedTimer); /* USER CODE END LoRaWAN_Init_2 */ - + APP_LOG(TS_OFF, VLEVEL_M, "\n start 3\n"); LmHandlerJoin(ActivationType, ForceRejoin); - + APP_LOG(TS_OFF, VLEVEL_M, "\n start 3 FORCE JOIN\n"); if (EventType == TX_ON_TIMER) { + APP_LOG(TS_OFF, VLEVEL_M, "\n start 4\n"); /* send every time timer elapses */ UTIL_TIMER_Create(&TxTimer, TxPeriodicity, UTIL_TIMER_ONESHOT, OnTxTimerEvent, NULL); UTIL_TIMER_Start(&TxTimer); @@ -493,11 +494,12 @@ void LoRaWAN_Init(void) else { /* USER CODE BEGIN LoRaWAN_Init_3 */ - + APP_LOG(TS_OFF, VLEVEL_M, "\n start 5\n"); /* USER CODE END LoRaWAN_Init_3 */ } /* USER CODE BEGIN LoRaWAN_Init_Last */ + APP_LOG(TS_OFF, VLEVEL_M, "\n reboot config start \n"); STS_REBOOT_CONFIG_Init(); diff --git a/STS/TOF/App/app_tof_peoplecount.c b/STS/TOF/App/app_tof_peoplecount.c index 931f99b..618c10f 100644 --- a/STS/TOF/App/app_tof_peoplecount.c +++ b/STS/TOF/App/app_tof_peoplecount.c @@ -431,7 +431,7 @@ int sts_tof_vl53lx_peoplecount_init(void) APP_LOG(TS_OFF, VLEVEL_L,"Initialization or configuration of the device\n"); return (-1); } - APP_LOG(TS_OFF, VLEVEL_L,"Start counting people with profile : %s...\n", PROFILE_STRING); + APP_LOG(TS_OFF, VLEVEL_L,"\n\nStart counting people with profile : %s...\n\n", PROFILE_STRING); status = VL53L1X_StartRanging(dev); /* This function has to be called to enable the ranging */ if (status != 0) {