Question
Hi, I'm trying to understand how storing and restoring the LoRa context for stm32wl works. To my understanding it would be ossible to skip the join process if the device is already joined once even if it is power cycled?
I've made sure "force rejoins at reboot" is not not ticked in the configuration file, and then I set the task "LoRaStoreContextEvent" in the beginning of the user code section like this
static void OnNvmDataChange(LmHandlerNvmContextStates_t state)
{
/* USER CODE BEGIN OnNvmDataChange_1 */
UTIL_SEQ_SetTask((1 << CFG_SEQ_Task_LoRaStoreContextEvent), CFG_SEQ_Prio_0);
....Since it stills rejoins when power cycling I think I'm probably misunderstanding how things are supposed to be used.