P2 #8

Merged
sundp merged 18 commits from P2 into master 2024-09-20 14:41:45 +08:00
2 changed files with 8 additions and 6 deletions
Showing only changes of commit aab3332330 - Show all commits

View File

@ -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();

View File

@ -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) {