P2 #8
|
@ -501,6 +501,8 @@ void LoRaWAN_Init(void)
|
|||
|
||||
STS_REBOOT_CONFIG_Init();
|
||||
|
||||
UTIL_SEQ_RegTask((1 << CFG_SEQ_Task_YunhornSTSEventRFAC), UTIL_SEQ_RFU, STS_YunhornSTSEventRFAC_Process);
|
||||
|
||||
#ifdef STS_P2
|
||||
|
||||
UTIL_SEQ_RegTask((1 << CFG_SEQ_Task_YunhornSTSEventP5), UTIL_SEQ_RFU, STS_YunhornSTSEventP5_Process);
|
||||
|
@ -513,7 +515,7 @@ void LoRaWAN_Init(void)
|
|||
UTIL_TIMER_Start(&YunhornSTSWakeUpScanTimer);
|
||||
|
||||
UTIL_TIMER_Create(&YunhornSTSHeartBeatTimer, STS_HeartBeatTimerPeriod_sec, UTIL_TIMER_PERIODIC, OnYunhornSTSHeartBeatTimerEvent, NULL);
|
||||
|
||||
UTIL_TIMER_Start(&YunhornSTSHeartBeatTimer);
|
||||
|
||||
/* USER CODE END LoRaWAN_Init_Last */
|
||||
}
|
||||
|
|
|
@ -122,7 +122,7 @@ extern "C" {
|
|||
* @brief Define the read access of the keys in memory
|
||||
* @note this value should be disabled after the development process
|
||||
*/
|
||||
#define KEY_EXTRACTABLE 0
|
||||
#define KEY_EXTRACTABLE 1
|
||||
|
||||
/*!
|
||||
* @brief Enables/Disables the context storage management storage
|
||||
|
|
|
@ -1432,7 +1432,7 @@ void STS_REBOOT_CONFIG_Init(void)
|
|||
|
||||
/* USER CODE END OnRestoreContextRequest_1 */
|
||||
//UTIL_MEM_cpy_8((void*)nvm_store_value, (void*)STS_CONFIG_NVM_BASE_ADDRESS, YUNHORN_STS_MAX_NVM_CFG_SIZE);
|
||||
FLASH_IF_Read((void*)nvm_store_value, (void*)STS_CONFIG_NVM_BASE_ADDRESS, YUNHORN_STS_MAX_NVM_CFG_SIZE);
|
||||
FLASH_IF_Read(nvm_store_value, STS_CONFIG_NVM_BASE_ADDRESS, YUNHORN_STS_MAX_NVM_CFG_SIZE);
|
||||
/* USER CODE BEGIN OnRestoreContextRequest_Last */
|
||||
for (uint8_t x=0; x< 64; x++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue