cancel
Showing results for 
Search instead for 
Did you mean: 

Task Management in STM32WL55JC MPU. I created task to send data to server via gateway for every 60 seconds ,after triggering task in between if i executes LoRaWAN_init() again then task not triggered again, why?

PPraj.1
Associate II

What are the Effects of LoRaWAN_init() on our task?

For more- I am not register task again?

Pls help i have already spend two days on that

1 REPLY 1
Louis AUDOLY
ST Employee

Hello @PPraj.1​ ,

In our code, LoraWAN_Init() have created to be execute only once. If you call it a second time it will recreate task, timers etc ... that have not been deInit or delete before. So I don't know what behavior is expected when you do this but the code have not been build to do this.

If you really need to do this you have to take care of the previous configuration (task timers etc).

Regards

Louis