diff --git a/Core/Inc/main.h b/Core/Inc/main.h
index c03903a..75f44eb 100644
--- a/Core/Inc/main.h
+++ b/Core/Inc/main.h
@@ -181,6 +181,21 @@ void Error_Handler(void);
#define RF_Receive_GPIO_Pin GPIO_PIN_9
#define RF_Receive_GPIO_CLK_EN() __HAL_RCC_GPIOA_CLK_ENABLE();
#define RF_Receive_Data_In() HAL_GPIO_ReadPin(RF_Receive_GPIO_Port, RF_Receive_GPIO_Pin)
+
+
+
+#define DATA_IR_PIN GPIO_PIN_3
+#define DATA_IR_GPIO_PORT GPIOB
+#define DATA_IR_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE();
+
+#define IR_Send_GPIO_Port GPIOB
+#define IR_Send_GPIO_Pin GPIO_PIN_3
+
+#define IR_Receive_GPIO_Port GPIOB
+#define IR_Receive_GPIO_Pin GPIO_PIN_3
+#define IR_Receive_GPIO_CLK_EN() __HAL_RCC_GPIOB_CLK_ENABLE();
+#define IR_Receive_Data_In() HAL_GPIO_ReadPin(IR_Receive_GPIO_Port, IR_Receive_GPIO_Pin)
+
#endif
diff --git a/Core/Src/ev1527.c b/Core/Src/ev1527.c
index 692f562..75d7326 100644
--- a/Core/Src/ev1527.c
+++ b/Core/Src/ev1527.c
@@ -43,15 +43,12 @@ static uint32_t Low_Bit_Count = 0; // 低位数据位计数
static uint32_t High_Bit_Duration = 0; // 高位数据位持续时间
static uint32_t Low_Bit_Duration = 0; // 低位数据位持续时间
static uint8_t Received_Buffer[ARRAY_SIZE] = {0}; // 接收数据缓冲区
-static uint8_t lastDataArray[ARRAY_SIZE] = {0}; // 上一次接收数据缓冲区
+
static uint8_t Received_Byte_Count = 0; // 接收数据字节计数
-static uint8_t consecutiveEqualCount = 0; // 数据接收相同计数
+
static uint8_t Bit_Count = 0; // 接收数据位计数
static uint8_t Received_Data = 0; // 接收到的数据
static Decode_State_t RF_Decode_State = LEAD_CODE; // 数据解码状态
-static uint32_t Lead_Code_Count_Start =0;
-static uint32_t High_Bit_Count_Start =0;
-static uint32_t Low_Bit_Count_Start =0;
void Decode_Data(void);
void Execute_Function(void);
void Reset_Decode_Parameters(void);
@@ -72,109 +69,6 @@ void EV1527_Init(void)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
HAL_GPIO_Init(DATA_433_GPIO_PORT, &GPIO_InitStruct);
}
-#if 0
-/**----------------------------------------------------------------------------------------------**
- **函数名 :RF信号解码函数
- **功能说明:解码从433MHz接收到的信号,并根据解码结果执行相应功能
- **调用说明:80us调用一次
- **----------------------------------------------------------------------------------------------**/
-void RF_Signal_Decode(void)
-{
- switch (RF_Decode_State)
- {
- case LEAD_CODE: // 引导码
- // 判断是否低电平
- if (HAL_GPIO_ReadPin(DATA_433_GPIO_PORT, DATA_433_PIN) == GPIO_PIN_RESET)
- {
-
- Lead_Code_Count++;
-
- }
- else // 高电平判断范围
- {
- // 判断引导码范围是否合法
- if (Lead_Code_Count >= MIN_LEAD_CODE && Lead_Code_Count <= MAX_LEAD_CODE)
- {
- Lead_Code_Count = 0;
- Reset_Decode_Parameters(); // 重置解码参数
- RF_Decode_State = HIGH_BIT; // 进入高位数据位判断状态
- }
- else
- {
- Reset_Decode_Parameters(); // 引导码范围不合法,重置解码参数
- }
- }
- break;
-
- case HIGH_BIT:
- // 判断是否高电平
- if (HAL_GPIO_ReadPin(DATA_433_GPIO_PORT, DATA_433_PIN) == GPIO_PIN_SET)
- {
- High_Bit_Count++;
- }
- else // 低电平判断范围
- {
- // 判断高位数据位范围是否合法
- if (High_Bit_Count >= MIN_BIT_DURATION && High_Bit_Count <= MAX_BIT_DURATION)
- {
- High_Bit_Duration = High_Bit_Count; // 保存计数值,用于区分0和1
- High_Bit_Count = 0;
- RF_Decode_State = LOW_BIT; // 进入低位数据位判断状态
- }
- else
- {
- Reset_Decode_Parameters(); // 高位数据位范围不合法,重置解码参数
- }
- }
- break;
-
- case LOW_BIT:
- // 判断是否低电平
- if (HAL_GPIO_ReadPin(DATA_433_GPIO_PORT, DATA_433_PIN) == GPIO_PIN_RESET)
- {
- Low_Bit_Count++;
- }
- else // 高电平判断范围
- {
- // 判断低位数据位范围是否合法
- if (Low_Bit_Count >= MIN_BIT_DURATION && Low_Bit_Count <= MAX_BIT_DURATION)
- {
- Low_Bit_Duration = Low_Bit_Count; // 保存计数值,用于区分0和1
- Low_Bit_Count = 0;
- RF_Decode_State = DATA_PROCESS; // 进入数据处理状态
- }
- else
- {
- Reset_Decode_Parameters(); // 低位数据位范围不合法,重置解码参数
- }
- }
- break;
-
- case DATA_PROCESS:
- Decode_Data(); // 解码数据
- if (Received_Byte_Count == 3)
- {
- // 接收到全部数据,包括地址和数据
- RF_Decode_State = FUNCTION_PROCESS;
- }
- else
- { // 数据没接收完
- RF_Decode_State = HIGH_BIT; // 继续解码数据
- }
- break;
-
- case FUNCTION_PROCESS:
- Execute_Function(); // 执行功能
- Reset_Decode_Parameters(); // 重置解码参数
- break;
-
- default:
- Reset_Decode_Parameters(); // 默认状态,重置解码参数
- break;
- }
-}
-#endif
-
#if 1
/**----------------------------------------------------------------------------------------------**
**函数名 :RF信号解码函数
@@ -328,49 +222,9 @@ void Decode_Data(void)
void Execute_Function(void)
{
// 判断解码后的功能字节,并执行相应操作
- switch (0x0F&Received_Buffer[FUNCTION_BYTE_INDEX])
- {
- case FUNCTION_1:
- // 执行功能1
- printf("\r\n Function_1 \r\n");
- break;
+ printf("\r\n ADDR= %02x %02x %02x CMD=%02x",Received_Buffer[0],Received_Buffer[1],Received_Buffer[2], 0x0F&Received_Buffer[FUNCTION_BYTE_INDEX]);
+ printf("\r\n Function# %d \r\n", (0x0F&Received_Buffer[FUNCTION_BYTE_INDEX]));
- case FUNCTION_2:
- // 执行功能2
- printf("\r\n Function_2 \r\n");
- break;
-
- case FUNCTION_3:
- // 执行功能3
- printf("\r\n Function_3 \r\n");
- break;
- case FUNCTION_4:
- // 执行功能4
- printf("\r\n Function_4 \r\n");
- break;
- case FUNCTION_5:
- // 执行功能5
- printf("\r\n Function_5 \r\n");
- break;
- case FUNCTION_6:
- // 执行功能6
- printf("\r\n Function_6 \r\n");
- break;
- case FUNCTION_7:
- // 执行功能7
- printf("\r\n Function_7 \r\n");
- break;
- case FUNCTION_8:
- // 执行功能8
- printf("\r\n Function_8 \r\n");
- break;
-
- default:
- // 默认操作
- // printf("\r\n --- code =%02x",Received_Buffer[FUNCTION_BYTE_INDEX]);
- printf("\r\n ADDR= %02x %02x %02x CMD=%02x",Received_Buffer[0],Received_Buffer[1],Received_Buffer[2], 0x0F&Received_Buffer[FUNCTION_BYTE_INDEX]);
- break;
- }
}
@@ -407,9 +261,7 @@ extern uint8_t rf_data[4];
void STS_RF_write_send_1(void)
{
HAL_GPIO_WritePin(RF_Send_GPIO_Port, RF_Send_GPIO_Pin, SET);
-
HAL_Delay_Us(BIT1_HIGH_US);
-
HAL_GPIO_WritePin(RF_Send_GPIO_Port, RF_Send_GPIO_Pin, RESET);
HAL_Delay_Us(BIT1_LOW_US);
}
@@ -425,7 +277,6 @@ void STS_RF_write_send_0(void)
void STS_RF_write_send_leading(void)
{
HAL_GPIO_WritePin(RF_Send_GPIO_Port, RF_Send_GPIO_Pin, RESET);
- //HAL_Delay(CNT_LONG_MS); // 8 msec long low level
HAL_Delay_Us(LEADING_MS*1000);
}
@@ -463,9 +314,7 @@ void STS_RF_Send_Multi_Times(uint8_t *rf_payload, uint8_t rf_length, uint8_t mt)
{
rf_payload[2] |= ((i+1) <<4);
printf("%d : Address=%02X:%02X:%01x CMD=%01X\r\n",i, rf_payload[0],rf_payload[1],rf_payload[2]&0x0F, (rf_payload[2]>>4)&0x0F);
-
STS_RF_Send_AddressBit_and_CmdBit(rf_payload, rf_length);
-
rf_payload[2] &= 0x0F; // cmd set to 0
}
diff --git a/Core/Src/gpio.c b/Core/Src/gpio.c
index 862abdf..e3260cc 100644
--- a/Core/Src/gpio.c
+++ b/Core/Src/gpio.c
@@ -20,7 +20,7 @@
/* Includes ------------------------------------------------------------------*/
#include "gpio.h"
-#include "app_tof_pin_conf.h"
+
/* USER CODE BEGIN 0 */
/* USER CODE END 0 */
diff --git a/Core/Src/main.c b/Core/Src/main.c
index 561f656..52e99c7 100644
--- a/Core/Src/main.c
+++ b/Core/Src/main.c
@@ -34,19 +34,50 @@
/* USER CODE BEGIN PTD */
TIM_HandleTypeDef htim1, htim2;
//uint8_t rf_payload[3]={0xF8,0xCD,0x07}, rf_length=3;
-uint8_t rf_payload[3]={0x1F,0xB3,0xE0}, rf_length=3; // RC_PROJECTOR
-uint8_t sos_rf_payload[3]={0x82,0x73,0xA0}, sos_rf_length=3; // sos_button
-enum rf_cmd_enum
-{ BUTTON_NONE=0,
- BUTTON_ON,
- BUTTON_OFF,
- BUTTON_FIRST,
- BUTTON_NEXT,
- BUTTON_5S,
- BUTTON_10S,
- BUTTON_15S,
- BUTTON_30S,
- BUTTON_9,BUTTON_10,BUTTON_11,BUTTON_12,BUTTON_13,BUTTON_14,BUTTON_15,
+uint8_t rf_payload[3]={0x1F,0xB3,0xE0}, rf_length=3; // RF433_RC_PROJECTOR
+uint8_t sos_rf_payload[3]={0x82,0x73,0xA0}, sos_rf_length=3; // RF433_SOS_Button
+enum rc_function_enum
+{
+ RC_FUN_NONE,
+ RC_FUN_PROJECTOR, // projector
+ RC_FUN_SOS, // SOS button
+ RC_FUN_FAN // swing fan
+};
+
+enum rc_tx_rx_type_enum
+{
+ RC_TXRX_TYPE_NONE=0,
+ RC_TXRX_TYPE_RF433,
+ RC_TXRX_TYPE_IRDA,
+ RC_TXRX_TYPE_2_4G,
+ RC_TXRX_TYPE_BLE
+};
+
+// RF433 REMOTE CONTROL
+enum rc_projector_cmd_enum
+{ BUTTON_NONE,
+ BUTTON_ON,
+ BUTTON_OFF,
+ BUTTON_FIRST,
+ BUTTON_NEXT,
+ BUTTON_5S,
+ BUTTON_10S,
+ BUTTON_15S,
+ BUTTON_30S
+};
+enum rc_sos_button_cmd_enum
+{ BUTTON_NO_SOS=0,
+ BUTTON_SOS,
+};
+// IRDA REMOTE CONTROL GREE
+enum IRDa_rc_fan_button_cmd_enum
+{ IR_BUTTON_NONE=0,
+ IR_BUTTON_OFF, // SWITCH OFF
+ IR_BUTTON_ON, // SWITCH ON
+ IR_BUTTON_SWING, // SWING HEAD
+ IR_BUTTON_SPEED, // SPEED ROTATE +, 1, 2, 3
+ IR_BUTTON_TIMER, // TIMER TO STOP, 10,20,40,MIN
+ IR_BUTTON_BLOW_MODE // BLOW MODE, LOW,MIDDLE,HIGH
};
uint8_t rf_cmd[16]={0x00, 0x8,0xC,0x4,0x6,0x1,0x9,0x2,0x3}; // cmd 1 = 1, cmd2=4, cmd3=3, cmd4=2
@@ -56,16 +87,34 @@ void sts_rc_decoder(void);
uint8_t sts_rc_decodedx(void);
volatile uint8_t codexx=0, code_vt=0;
/* USER CODE END PTD */
+typedef struct rc_type_cmd_t {
+ uint8_t f1;
+ uint8_t f2;
+ uint8_t f3;
+ uint8_t f4;
+ uint8_t f5;
+ uint8_t f6;
+ uint8_t f7;
+ uint8_t f8;
+} rc_type_cmd_typedef;
+rc_type_cmd_typedef rc_type_cmd[6]={
+ {0,0,0,0,0,0,0,0}, // type none
+ {1,2,3,4,5,6,7,8}, // type 1, rf433, projector
+ {1,0,0,0,0,0,0,0}, // type 2, rf433, sos button
+ {1,2,3,4,5,0,0,0} // type 3, iRDa, GREE fan
+};
+
+
uint8_t rc_cmd[9]={
- RC_NONE,
- RC_POWER_ON,
- RC_POWER_OFF,
- RC_PIC_FIRST,
- RC_PIC_NEXT,
- RC_SHOW_5S,
- RC_SHOW_10S,
- RC_SHOW_15S,
- RC_SHOW_30S
+ BUTTON_NONE,
+ BUTTON_ON,
+ BUTTON_OFF,
+ BUTTON_FIRST,
+ BUTTON_NEXT,
+ BUTTON_5S,
+ BUTTON_10S,
+ BUTTON_15S,
+ BUTTON_30S
};
/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
@@ -128,7 +177,7 @@ int main(void)
// MX_I2C2_Init();
MX_GPIO_Init();
- // MX_LoRaWAN_Init();
+ MX_LoRaWAN_Init();
/* USER CODE BEGIN 2 */
MX_USART2_UART_Init();
@@ -136,16 +185,18 @@ int main(void)
// MX_USART1_UART_Init();
// MX_TIM1_Init();
- MX_TIM2_Init();
+
+ // for Time base generate , 1 us interval
+ MX_TIM2_Init(); // for 80-100 us timer Time Base
if (HAL_TIM_Base_Start_IT(&htim2) != HAL_OK)
{
- /* Starting Error */
Error_Handler();
}
-
+ // for Time base generate , 1 us interval
printf("start \r\n");
+
while(1)
{
@@ -168,6 +219,56 @@ int main(void)
/* USER CODE END 3 */
}
+void STS_ON_BUTTON(uint8_t cmd1, uint8_t cmd2)
+{
+ uint8_t rc_type=RC_TXRX_TYPE_RF433;
+ uint8_t rc_function = RC_FUN_PROJECTOR;
+ uint8_t single_button=cmd2;
+ switch (rc_type) {
+ case RC_TXRX_TYPE_RF433:
+ if (rc_function == RC_FUN_PROJECTOR)
+ {
+ single_button = rf_cmd[cmd1],
+ STS_RF_Send_Button_Multi_Times(rf_payload, single_button, 3, 8);
+ }else if (rc_function == RC_FUN_SOS)
+ {
+ single_button = sos_rf_cmd[cmd1],
+ STS_RF_Send_Button_Multi_Times(rf_payload, single_button, 3, 8);
+ }
+ break;
+ case RC_TXRX_TYPE_IRDA:
+ if (rc_function == RC_FUN_FAN) // one button control
+ {
+ // switch button 1/2/3/4/5/6, function_mapping(button_no){ "on", "off", ”speed 1“, "speed2", "speed 3", "swing on/off"
+
+ // Send fan control cmd, on/off, swing on/off, speed 1/2/3, air flow profile 1/2/3
+ }
+ break;
+ default:
+ break;
+ }
+
+#if 0
+ break;
+ case rf_cmd[rc_type].f2:
+ break;
+ case rf_cmd[rc_type].f3:
+ break;
+ case rf_cmd[rc_type].f4:
+ break;
+ case rf_cmd[rc_type].f5:
+ break;
+ case rf_cmd[rc_type].f6:
+ break;
+ case rf_cmd[rc_type].f7:
+ break;
+ case rf_cmd[rc_type].f8:
+ break;
+ default:
+ break;
+ }
+#endif
+}
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
{
diff --git a/Core/Src/tim.c b/Core/Src/tim.c
index 280ebb1..f051fc0 100644
--- a/Core/Src/tim.c
+++ b/Core/Src/tim.c
@@ -273,297 +273,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
#endif
-#if 0
-void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
-{
- static uint32_t uwICValue;
- static uint32_t last_uwICValue;
- uint32_t uwDiffCapture;
- static uint32_t highCnt=0, lowCnt=0;
- static uint8_t sync=0;
- //printf(" cc ");
- // RF_Signal_Decode();
-
- // if (TIM1 == htim->Instance)
- {
- // if ((htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2))
- {
- if (HAL_GPIO_ReadPin(RF_Receive_GPIO_Port,RF_Receive_GPIO_Pin)== GPIO_PIN_RESET)
- { // Falling edge
- // printf(">");
- highCnt = HAL_TIM_ReadCapturedValue(&htim2, TIM_CHANNEL_2); // get current value
- }
- else if ((HAL_GPIO_ReadPin(RF_Receive_GPIO_Port,RF_Receive_GPIO_Pin) == GPIO_PIN_SET))
- { // Rising edge
- lowCnt = HAL_TIM_ReadCapturedValue(&htim2, TIM_CHANNEL_2); // get current value
- if (syn == 1)
- { // sync then decode
- if ((lowCnt > EV1527_L4_MIN) && (highCnt < EV1527_L4_MAX))
- {
-
- if ((lowCnt > EV1527_H12_MIN) && (highCnt < EV1527_H12_MAX))
- { // short pulse, there must be a valid long pulse, data=1, otherwise error
- EV1527Decode(1);
- }
- else
- {
- EV1527Reset(); // error handling
- }
- }
- }
- else if ((lowCnt > EV1527_L12_MIN) && (lowCnt < EV1527_L12_MAX))
- {
- if ((highCnt > EV1527_H4_MIN) && (highCnt < EV1527_H4_MAX))
- { // long pulse, there must be a valid short pulse, data =0, otherwise error
- EV1527Decode(0);
- }
- else
- {
- EV1527Reset(); // error handling
- }
- }
- }
- else
- {
- if ((lowCnt > EV1527_SYN_MIN) && (lowCnt < EV1527_SYN_MAX))
- { // sync feature Low level
- if ((highCnt > EV1527_H4_MIN) && (highCnt < EV1527_H4_MAX))
- {
- // and there must be a valid sync high pulse, sync starting (may also be error code)
- syn = 1;
- pulseCnt = 0;
- code = 0;
- printf("sync: %d \r\n", lowCnt);
- }
- }
- }
- }
- }
-}
-
-#endif
-
-/**
- * @brief Input Capture callback in non blocking mode
- * @param htim : TIM IC handle
- * @retval None
- */
-#if 0
-void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
-{
- static uint32_t uwICValue;
- static uint32_t last_uwICValue;
- uint32_t uwDiffCapture;
- // printf(" cc ");
- // RF_Signal_Decode();
-
- if (TIM1 == htim->Instance)
- {
- // if ((htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2)||(htim->Channel == HAL_TIM_ACTIVE_CHANNEL_1))
- // if ((htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2))
- {
- switch(capture_Cnt)
- {
- case 1:
- capture_Buf[0] = HAL_TIM_ReadCapturedValue(&htim1, TIM_CHANNEL_2); // get current value
- //printf("B0:%ld ", capture_Buf[0]);
- //printf("/");
- TIM_SET_CAPTUREPOLARITY(&htim1, TIM_CHANNEL_2, TIM_ICPOLARITY_FALLING); // set falling edge capture
- capture_Cnt ++;
- break;
- case 2:
- capture_Buf[1] = HAL_TIM_ReadCapturedValue(&htim1, TIM_CHANNEL_2); // get current value
- //printf("B1:%ld ", capture_Buf[1]);
- //printf("_");
- //HAL_TIM_IC_Stop_IT(&htim1, TIM_CHANNEL_2); // stop capture or _HAL_TIM_DISABLE(&htim1);
- TIM_SET_CAPTUREPOLARITY(&htim1, TIM_CHANNEL_2, TIM_ICPOLARITY_RISING); // set falling edge capture
- capture_Cnt ++;
- case 3:
- capture_Buf[2] = HAL_TIM_ReadCapturedValue(&htim1, TIM_CHANNEL_2); // get current value
- //printf("B2:%ld ", capture_Buf[2]);
- printf(")");
- HAL_TIM_IC_Stop_IT(&htim1, TIM_CHANNEL_2); // stop capture or _HAL_TIM_DISABLE(&htim1);
- //TIM_SET_CAPTUREPOLARITY(&htim1, TIM_CHANNEL_2, TIM_ICPOLARITY_RISING); // set falling edge capture
- // capture_Cnt ++;
- break;
-
-
- }
- // RF_Signal_Decode();
- }
- }
-
-}
-#endif
-
-#if 0
-/* USER CODE BEGIN 4 */
-/**
- * @brief Input capture callback in non blocking mode
- * @param htim : htim handle
- * @retval None
- */
-void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
-{
- if (htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2)
- {
- if(uhCaptureIndex == 0)
- {
- /* Get the 1st Input Capture value */
- uwIC2Value1 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
- uhCaptureIndex = 1;
- printf("Capture_state=%d \r\n",uhCaptureIndex);
- }
- else if(uhCaptureIndex == 1)
- {
- /* Get the 2nd Input Capture value */
- uwIC2Value2 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
-
- /* Capture computation */
- if (uwIC2Value2 > uwIC2Value1)
- {
- uwDiffCapture = (uwIC2Value2 - uwIC2Value1);
- }
- else if (uwIC2Value2 < uwIC2Value1)
- {
- /* 0xFFFF is max TIM1_CCRx value */
- uwDiffCapture = ((0xFFFF - uwIC2Value1) + uwIC2Value2) + 1;
- }
- else
- {
- /* If capture values are equal, we have reached the limit of frequency
- measures */
- Error_Handler();
- }
-#if 1
- /* Frequency computation: for this example TIMx (TIM1) is clocked by
- APB2Clk */
- uwFrequency = HAL_RCC_GetPCLK2Freq() / uwDiffCapture;
-
- printf("diff=%ld uwF=%ld Hz\r\n", uwDiffCapture, uwFrequency);
- // uhCaptureIndex = 0;
-#endif
- if ((uwDiffCapture > 100) && (uwDiffCapture < 300))
- {
- uhCaptureIndex = 2;
- printf("Capture_state=%d \r\n",uhCaptureIndex);
- }
- } else if (uhCaptureIndex ==2)
- {
- /* Get the 2nd Input Capture value */
- uwIC2Value1 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
- uhCaptureIndex = 3;
- } else if (uhCaptureIndex ==3)
- {
- uwIC2Value2 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
-
- /* Capture computation */
- if (uwIC2Value2 > uwIC2Value1)
- {
- uwDiffCapture = (uwIC2Value2 - uwIC2Value1);
- }
- else if (uwIC2Value2 < uwIC2Value1)
- {
- /* 0xFFFF is max TIM1_CCRx value */
- uwDiffCapture = ((0xFFFF - uwIC2Value1) + uwIC2Value2) + 1;
- }
- else
- {
- /* If capture values are equal, we have reached the limit of frequency
- measures */
- Error_Handler();
- }
-
- if ((uwDiffCapture > 300) && (uwDiffCapture < 500))
- {
- bit0_high =1;
- } else if ((uwDiffCapture > 500) && (uwDiffCapture < 1100))
- {
- bit0_low =1;
- }
-
- uwIC2Value1 = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
- uhCaptureIndex = 2;
-
- }
- }
-}
-#endif
-
-#if 0
-/**
- * @brief Input Capture callback in non blocking mode
- * @param htim : TIM IC handle
- * @retval None
- */
-void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
-{
- if (htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2)
- {
- /* Get the Input Capture value */
- uwIC2Value = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
-
- if (uwIC2Value != 0)
- {
- /* Duty cycle computation */
- // uwDutyCycle = ((HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2)) * 100) / uwIC2Value;
- uwDutyCycle = ((HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2) - uwIC2Value) * 100) / uwIC2Value;
- if ( uwDutyCycle > 70)
- {
- bit = 1;
- } else if (uwDutyCycle < 30)
- {
- bit = 0;
- }
- printf("%2d ", bit);
- /* uwFrequency computation
- TIM1 counter clock = (System Clock) */
- // uwFrequency = ( HAL_RCC_GetSysClockFreq() ) / uwIC2Value;
- // printf("f=%ld duty=%ld \r\n", uwFrequency, uwDutyCycle);
- }
- else
- {
- uwDutyCycle = 0;
- uwFrequency = 0;
- }
- }
-}
-
-#endif
-
-#if 0
-/**
- * @brief Input Capture callback in non blocking mode
- * @param htim : TIM IC handle
- * @retval None
- */
-void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim)
-{
- if (htim->Channel == HAL_TIM_ACTIVE_CHANNEL_2)
- {
- /* Get the Input Capture value */
- uwIC2Value = HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2);
-
- if (uwIC2Value != 0)
- {
- /* Duty cycle computation */
- uwDutyCycle = ((HAL_TIM_ReadCapturedValue(htim, TIM_CHANNEL_2)) * 100) / uwIC2Value;
-
- /* uwFrequency computation
- TIM1 counter clock = (System Clock) */
- uwFrequency = ( HAL_RCC_GetSysClockFreq() ) / uwIC2Value;
- printf("f=%ld duty=%ld \r\n", uwFrequency, uwDutyCycle);
- }
- else
- {
- uwDutyCycle = 0;
- uwFrequency = 0;
- }
- }
-}
-
-#endif
#if 0
/* TIM1 init function */
diff --git a/LoRaWAN/App/app_lorawan.c b/LoRaWAN/App/app_lorawan.c
index c1d63c1..441232f 100644
--- a/LoRaWAN/App/app_lorawan.c
+++ b/LoRaWAN/App/app_lorawan.c
@@ -25,7 +25,7 @@
#include "stm32_seq.h"
/* USER CODE BEGIN Includes */
-#include "app_tof.h"
+
/* USER CODE END Includes */
/* External variables ---------------------------------------------------------*/
@@ -71,7 +71,7 @@ void MX_LoRaWAN_Init(void)
/* USER CODE BEGIN MX_LoRaWAN_Init_2 */
/* USER CODE END MX_LoRaWAN_Init_2 */
- // LoRaWAN_Init();
+ LoRaWAN_Init();
/* USER CODE BEGIN MX_LoRaWAN_Init_3 */
//MX_TOF_Init();
/* USER CODE END MX_LoRaWAN_Init_3 */
diff --git a/STM32CubeIDE/.settings/language.settings.xml b/STM32CubeIDE/.settings/language.settings.xml
index f7fa978..74d82f1 100644
--- a/STM32CubeIDE/.settings/language.settings.xml
+++ b/STM32CubeIDE/.settings/language.settings.xml
@@ -5,7 +5,7 @@
-
+
@@ -16,7 +16,7 @@
-
+
diff --git a/STM32CubeIDE/Debug/Application/User/Core/subdir.mk b/STM32CubeIDE/Debug/Application/User/Core/subdir.mk
index ac38c06..1369014 100644
--- a/STM32CubeIDE/Debug/Application/User/Core/subdir.mk
+++ b/STM32CubeIDE/Debug/Application/User/Core/subdir.mk
@@ -1,73 +1,85 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/adc.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/adc_if.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/dma.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/flash_if.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/gpio.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/main.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/rtc.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32_lpm_if.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_hal_msp.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_it.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sts_weight_scale.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/subghz.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_app.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_debug.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_sensors.c \
-../Application/User/Core/syscalls.c \
-../Application/User/Core/sysmem.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/timer_if.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/usart.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/adc.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/adc_if.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/dma.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/ev1527.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/flash_if.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/gpio.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/main.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/rtc.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sensirion_common.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sht3x.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32_lpm_if.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_hal_msp.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_it.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sts_aq_o3.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/subghz.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_app.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_debug.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sys_sensors.c \
+../Application/User/Core/syscalls.c \
+../Application/User/Core/sysmem.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/tim.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/timer_if.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/usart.c \
D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/usart_if.c
-OBJS += \
-./Application/User/Core/adc.o \
-./Application/User/Core/adc_if.o \
-./Application/User/Core/dma.o \
-./Application/User/Core/flash_if.o \
-./Application/User/Core/gpio.o \
-./Application/User/Core/main.o \
-./Application/User/Core/rtc.o \
-./Application/User/Core/stm32_lpm_if.o \
-./Application/User/Core/stm32wlxx_hal_msp.o \
-./Application/User/Core/stm32wlxx_it.o \
-./Application/User/Core/sts_weight_scale.o \
-./Application/User/Core/subghz.o \
-./Application/User/Core/sys_app.o \
-./Application/User/Core/sys_debug.o \
-./Application/User/Core/sys_sensors.o \
-./Application/User/Core/syscalls.o \
-./Application/User/Core/sysmem.o \
-./Application/User/Core/timer_if.o \
-./Application/User/Core/usart.o \
+OBJS += \
+./Application/User/Core/adc.o \
+./Application/User/Core/adc_if.o \
+./Application/User/Core/dma.o \
+./Application/User/Core/ev1527.o \
+./Application/User/Core/flash_if.o \
+./Application/User/Core/gpio.o \
+./Application/User/Core/main.o \
+./Application/User/Core/rtc.o \
+./Application/User/Core/sensirion_common.o \
+./Application/User/Core/sht3x.o \
+./Application/User/Core/stm32_lpm_if.o \
+./Application/User/Core/stm32wlxx_hal_msp.o \
+./Application/User/Core/stm32wlxx_it.o \
+./Application/User/Core/sts_aq_o3.o \
+./Application/User/Core/subghz.o \
+./Application/User/Core/sys_app.o \
+./Application/User/Core/sys_debug.o \
+./Application/User/Core/sys_sensors.o \
+./Application/User/Core/syscalls.o \
+./Application/User/Core/sysmem.o \
+./Application/User/Core/tim.o \
+./Application/User/Core/timer_if.o \
+./Application/User/Core/usart.o \
./Application/User/Core/usart_if.o
-C_DEPS += \
-./Application/User/Core/adc.d \
-./Application/User/Core/adc_if.d \
-./Application/User/Core/dma.d \
-./Application/User/Core/flash_if.d \
-./Application/User/Core/gpio.d \
-./Application/User/Core/main.d \
-./Application/User/Core/rtc.d \
-./Application/User/Core/stm32_lpm_if.d \
-./Application/User/Core/stm32wlxx_hal_msp.d \
-./Application/User/Core/stm32wlxx_it.d \
-./Application/User/Core/sts_weight_scale.d \
-./Application/User/Core/subghz.d \
-./Application/User/Core/sys_app.d \
-./Application/User/Core/sys_debug.d \
-./Application/User/Core/sys_sensors.d \
-./Application/User/Core/syscalls.d \
-./Application/User/Core/sysmem.d \
-./Application/User/Core/timer_if.d \
-./Application/User/Core/usart.d \
+C_DEPS += \
+./Application/User/Core/adc.d \
+./Application/User/Core/adc_if.d \
+./Application/User/Core/dma.d \
+./Application/User/Core/ev1527.d \
+./Application/User/Core/flash_if.d \
+./Application/User/Core/gpio.d \
+./Application/User/Core/main.d \
+./Application/User/Core/rtc.d \
+./Application/User/Core/sensirion_common.d \
+./Application/User/Core/sht3x.d \
+./Application/User/Core/stm32_lpm_if.d \
+./Application/User/Core/stm32wlxx_hal_msp.d \
+./Application/User/Core/stm32wlxx_it.d \
+./Application/User/Core/sts_aq_o3.d \
+./Application/User/Core/subghz.d \
+./Application/User/Core/sys_app.d \
+./Application/User/Core/sys_debug.d \
+./Application/User/Core/sys_sensors.d \
+./Application/User/Core/syscalls.d \
+./Application/User/Core/sysmem.d \
+./Application/User/Core/tim.d \
+./Application/User/Core/timer_if.d \
+./Application/User/Core/usart.d \
./Application/User/Core/usart_if.d
@@ -78,6 +90,8 @@ Application/User/Core/adc_if.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Ap
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/dma.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/dma.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Application/User/Core/ev1527.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/ev1527.c Application/User/Core/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/flash_if.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/flash_if.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/gpio.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/gpio.c Application/User/Core/subdir.mk
@@ -86,13 +100,17 @@ Application/User/Core/main.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Appl
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/rtc.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/rtc.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Application/User/Core/sensirion_common.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sensirion_common.c Application/User/Core/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Application/User/Core/sht3x.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sht3x.c Application/User/Core/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/stm32_lpm_if.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32_lpm_if.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/stm32wlxx_hal_msp.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_hal_msp.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/stm32wlxx_it.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/stm32wlxx_it.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
-Application/User/Core/sts_weight_scale.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sts_weight_scale.c Application/User/Core/subdir.mk
+Application/User/Core/sts_aq_o3.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/sts_aq_o3.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/subghz.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/subghz.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
@@ -104,6 +122,8 @@ Application/User/Core/sys_sensors.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/%.o Application/User/Core/%.su Application/User/Core/%.cyclo: ../Application/User/Core/%.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Application/User/Core/tim.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/tim.c Application/User/Core/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/timer_if.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/timer_if.c Application/User/Core/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Application/User/Core/usart.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/usart.c Application/User/Core/subdir.mk
@@ -114,7 +134,7 @@ Application/User/Core/usart_if.o: D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/
clean: clean-Application-2f-User-2f-Core
clean-Application-2f-User-2f-Core:
- -$(RM) ./Application/User/Core/adc.cyclo ./Application/User/Core/adc.d ./Application/User/Core/adc.o ./Application/User/Core/adc.su ./Application/User/Core/adc_if.cyclo ./Application/User/Core/adc_if.d ./Application/User/Core/adc_if.o ./Application/User/Core/adc_if.su ./Application/User/Core/dma.cyclo ./Application/User/Core/dma.d ./Application/User/Core/dma.o ./Application/User/Core/dma.su ./Application/User/Core/flash_if.cyclo ./Application/User/Core/flash_if.d ./Application/User/Core/flash_if.o ./Application/User/Core/flash_if.su ./Application/User/Core/gpio.cyclo ./Application/User/Core/gpio.d ./Application/User/Core/gpio.o ./Application/User/Core/gpio.su ./Application/User/Core/main.cyclo ./Application/User/Core/main.d ./Application/User/Core/main.o ./Application/User/Core/main.su ./Application/User/Core/rtc.cyclo ./Application/User/Core/rtc.d ./Application/User/Core/rtc.o ./Application/User/Core/rtc.su ./Application/User/Core/stm32_lpm_if.cyclo ./Application/User/Core/stm32_lpm_if.d ./Application/User/Core/stm32_lpm_if.o ./Application/User/Core/stm32_lpm_if.su ./Application/User/Core/stm32wlxx_hal_msp.cyclo ./Application/User/Core/stm32wlxx_hal_msp.d ./Application/User/Core/stm32wlxx_hal_msp.o ./Application/User/Core/stm32wlxx_hal_msp.su ./Application/User/Core/stm32wlxx_it.cyclo ./Application/User/Core/stm32wlxx_it.d ./Application/User/Core/stm32wlxx_it.o ./Application/User/Core/stm32wlxx_it.su ./Application/User/Core/sts_weight_scale.cyclo ./Application/User/Core/sts_weight_scale.d ./Application/User/Core/sts_weight_scale.o ./Application/User/Core/sts_weight_scale.su ./Application/User/Core/subghz.cyclo ./Application/User/Core/subghz.d ./Application/User/Core/subghz.o ./Application/User/Core/subghz.su ./Application/User/Core/sys_app.cyclo ./Application/User/Core/sys_app.d ./Application/User/Core/sys_app.o ./Application/User/Core/sys_app.su ./Application/User/Core/sys_debug.cyclo ./Application/User/Core/sys_debug.d ./Application/User/Core/sys_debug.o ./Application/User/Core/sys_debug.su ./Application/User/Core/sys_sensors.cyclo ./Application/User/Core/sys_sensors.d ./Application/User/Core/sys_sensors.o ./Application/User/Core/sys_sensors.su ./Application/User/Core/syscalls.cyclo ./Application/User/Core/syscalls.d ./Application/User/Core/syscalls.o ./Application/User/Core/syscalls.su ./Application/User/Core/sysmem.cyclo ./Application/User/Core/sysmem.d ./Application/User/Core/sysmem.o ./Application/User/Core/sysmem.su ./Application/User/Core/timer_if.cyclo ./Application/User/Core/timer_if.d ./Application/User/Core/timer_if.o ./Application/User/Core/timer_if.su ./Application/User/Core/usart.cyclo ./Application/User/Core/usart.d ./Application/User/Core/usart.o ./Application/User/Core/usart.su ./Application/User/Core/usart_if.cyclo ./Application/User/Core/usart_if.d ./Application/User/Core/usart_if.o ./Application/User/Core/usart_if.su
+ -$(RM) ./Application/User/Core/adc.cyclo ./Application/User/Core/adc.d ./Application/User/Core/adc.o ./Application/User/Core/adc.su ./Application/User/Core/adc_if.cyclo ./Application/User/Core/adc_if.d ./Application/User/Core/adc_if.o ./Application/User/Core/adc_if.su ./Application/User/Core/dma.cyclo ./Application/User/Core/dma.d ./Application/User/Core/dma.o ./Application/User/Core/dma.su ./Application/User/Core/ev1527.cyclo ./Application/User/Core/ev1527.d ./Application/User/Core/ev1527.o ./Application/User/Core/ev1527.su ./Application/User/Core/flash_if.cyclo ./Application/User/Core/flash_if.d ./Application/User/Core/flash_if.o ./Application/User/Core/flash_if.su ./Application/User/Core/gpio.cyclo ./Application/User/Core/gpio.d ./Application/User/Core/gpio.o ./Application/User/Core/gpio.su ./Application/User/Core/main.cyclo ./Application/User/Core/main.d ./Application/User/Core/main.o ./Application/User/Core/main.su ./Application/User/Core/rtc.cyclo ./Application/User/Core/rtc.d ./Application/User/Core/rtc.o ./Application/User/Core/rtc.su ./Application/User/Core/sensirion_common.cyclo ./Application/User/Core/sensirion_common.d ./Application/User/Core/sensirion_common.o ./Application/User/Core/sensirion_common.su ./Application/User/Core/sht3x.cyclo ./Application/User/Core/sht3x.d ./Application/User/Core/sht3x.o ./Application/User/Core/sht3x.su ./Application/User/Core/stm32_lpm_if.cyclo ./Application/User/Core/stm32_lpm_if.d ./Application/User/Core/stm32_lpm_if.o ./Application/User/Core/stm32_lpm_if.su ./Application/User/Core/stm32wlxx_hal_msp.cyclo ./Application/User/Core/stm32wlxx_hal_msp.d ./Application/User/Core/stm32wlxx_hal_msp.o ./Application/User/Core/stm32wlxx_hal_msp.su ./Application/User/Core/stm32wlxx_it.cyclo ./Application/User/Core/stm32wlxx_it.d ./Application/User/Core/stm32wlxx_it.o ./Application/User/Core/stm32wlxx_it.su ./Application/User/Core/sts_aq_o3.cyclo ./Application/User/Core/sts_aq_o3.d ./Application/User/Core/sts_aq_o3.o ./Application/User/Core/sts_aq_o3.su ./Application/User/Core/subghz.cyclo ./Application/User/Core/subghz.d ./Application/User/Core/subghz.o ./Application/User/Core/subghz.su ./Application/User/Core/sys_app.cyclo ./Application/User/Core/sys_app.d ./Application/User/Core/sys_app.o ./Application/User/Core/sys_app.su ./Application/User/Core/sys_debug.cyclo ./Application/User/Core/sys_debug.d ./Application/User/Core/sys_debug.o ./Application/User/Core/sys_debug.su ./Application/User/Core/sys_sensors.cyclo ./Application/User/Core/sys_sensors.d ./Application/User/Core/sys_sensors.o ./Application/User/Core/sys_sensors.su ./Application/User/Core/syscalls.cyclo ./Application/User/Core/syscalls.d ./Application/User/Core/syscalls.o ./Application/User/Core/syscalls.su ./Application/User/Core/sysmem.cyclo ./Application/User/Core/sysmem.d ./Application/User/Core/sysmem.o ./Application/User/Core/sysmem.su ./Application/User/Core/tim.cyclo ./Application/User/Core/tim.d ./Application/User/Core/tim.o ./Application/User/Core/tim.su ./Application/User/Core/timer_if.cyclo ./Application/User/Core/timer_if.d ./Application/User/Core/timer_if.o ./Application/User/Core/timer_if.su ./Application/User/Core/usart.cyclo ./Application/User/Core/usart.d ./Application/User/Core/usart.o ./Application/User/Core/usart.su ./Application/User/Core/usart_if.cyclo ./Application/User/Core/usart_if.d ./Application/User/Core/usart_if.o ./Application/User/Core/usart_if.su
.PHONY: clean-Application-2f-User-2f-Core
diff --git a/STM32CubeIDE/Debug/Application/User/LoRaWAN/App/subdir.mk b/STM32CubeIDE/Debug/Application/User/LoRaWAN/App/subdir.mk
index 110555d..a5c05d3 100644
--- a/STM32CubeIDE/Debug/Application/User/LoRaWAN/App/subdir.mk
+++ b/STM32CubeIDE/Debug/Application/User/LoRaWAN/App/subdir.mk
@@ -1,25 +1,25 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/CayenneLpp.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/app_lorawan.c \
-D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/lora_app.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/CayenneLpp.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/app_lorawan.c \
+D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/lora_app.c \
D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/App/lora_info.c
-OBJS += \
-./Application/User/LoRaWAN/App/CayenneLpp.o \
-./Application/User/LoRaWAN/App/app_lorawan.o \
-./Application/User/LoRaWAN/App/lora_app.o \
+OBJS += \
+./Application/User/LoRaWAN/App/CayenneLpp.o \
+./Application/User/LoRaWAN/App/app_lorawan.o \
+./Application/User/LoRaWAN/App/lora_app.o \
./Application/User/LoRaWAN/App/lora_info.o
-C_DEPS += \
-./Application/User/LoRaWAN/App/CayenneLpp.d \
-./Application/User/LoRaWAN/App/app_lorawan.d \
-./Application/User/LoRaWAN/App/lora_app.d \
+C_DEPS += \
+./Application/User/LoRaWAN/App/CayenneLpp.d \
+./Application/User/LoRaWAN/App/app_lorawan.d \
+./Application/User/LoRaWAN/App/lora_app.d \
./Application/User/LoRaWAN/App/lora_info.d
diff --git a/STM32CubeIDE/Debug/Application/User/LoRaWAN/Target/subdir.mk b/STM32CubeIDE/Debug/Application/User/LoRaWAN/Target/subdir.mk
index 72443ca..7c51614 100644
--- a/STM32CubeIDE/Debug/Application/User/LoRaWAN/Target/subdir.mk
+++ b/STM32CubeIDE/Debug/Application/User/LoRaWAN/Target/subdir.mk
@@ -1,16 +1,16 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
+C_SRCS += \
D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/LoRaWAN/Target/radio_board_if.c
-OBJS += \
+OBJS += \
./Application/User/LoRaWAN/Target/radio_board_if.o
-C_DEPS += \
+C_DEPS += \
./Application/User/LoRaWAN/Target/radio_board_if.d
diff --git a/STM32CubeIDE/Debug/Application/User/Startup/subdir.mk b/STM32CubeIDE/Debug/Application/User/Startup/subdir.mk
index 7ad8c2b..b694460 100644
--- a/STM32CubeIDE/Debug/Application/User/Startup/subdir.mk
+++ b/STM32CubeIDE/Debug/Application/User/Startup/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Debug/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk b/STM32CubeIDE/Debug/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
index 4cf7e0f..a041280 100644
--- a/STM32CubeIDE/Debug/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
+++ b/STM32CubeIDE/Debug/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
@@ -1,19 +1,19 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.c \
D:/ONEDRIVE/STM32WLV13/Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo_radio.c
-OBJS += \
-./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.o \
+OBJS += \
+./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.o \
./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo_radio.o
-C_DEPS += \
-./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.d \
+C_DEPS += \
+./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo.d \
./Drivers/BSP/STM32WLxx_Nucleo/stm32wlxx_nucleo_radio.d
diff --git a/STM32CubeIDE/Debug/Drivers/CMSIS/subdir.mk b/STM32CubeIDE/Debug/Drivers/CMSIS/subdir.mk
index b19bdaf..521540d 100644
--- a/STM32CubeIDE/Debug/Drivers/CMSIS/subdir.mk
+++ b/STM32CubeIDE/Debug/Drivers/CMSIS/subdir.mk
@@ -1,16 +1,16 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
+C_SRCS += \
D:/ONEDRIVE/STM32WLV13/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node_55JC_AS923/Core/Src/system_stm32wlxx.c
-OBJS += \
+OBJS += \
./Drivers/CMSIS/system_stm32wlxx.o
-C_DEPS += \
+C_DEPS += \
./Drivers/CMSIS/system_stm32wlxx.d
diff --git a/STM32CubeIDE/Debug/Drivers/STM32WLxx_HAL_Driver/subdir.mk b/STM32CubeIDE/Debug/Drivers/STM32WLxx_HAL_Driver/subdir.mk
index 0b7d4ef..ee28258 100644
--- a/STM32CubeIDE/Debug/Drivers/STM32WLxx_HAL_Driver/subdir.mk
+++ b/STM32CubeIDE/Debug/Drivers/STM32WLxx_HAL_Driver/subdir.mk
@@ -1,79 +1,85 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_adc.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_adc_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_cortex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_dma.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_dma_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_exti.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_flash.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_flash_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_gpio.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rcc.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rcc_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rtc.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rtc_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_subghz.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_tim.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_tim_ex.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_uart.c \
-D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_uart_ex.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_adc.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_adc_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_cortex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_dma.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_dma_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_exti.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_flash.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_flash_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_gpio.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_i2c.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_i2c_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rcc.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rcc_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rtc.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_rtc_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_subghz.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_tim.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_tim_ex.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_uart.c \
+D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_uart_ex.c \
D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_ll_adc.c
-OBJS += \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.o \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.o \
+OBJS += \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.o \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.o \
./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.o
-C_DEPS += \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.d \
-./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.d \
+C_DEPS += \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.d \
+./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.d \
./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.d
@@ -98,6 +104,10 @@ Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o: D:/ONEDRIVE/STM32WLV13/Dr
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o: D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_gpio.c Drivers/STM32WLxx_HAL_Driver/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.o: D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_i2c.c Drivers/STM32WLxx_HAL_Driver/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
+Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.o: D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_i2c_ex.c Drivers/STM32WLxx_HAL_Driver/subdir.mk
+ arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o: D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr.c Drivers/STM32WLxx_HAL_Driver/subdir.mk
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DSTS_WS -DYUNHORN_STS_RANDOM -DCORE_CM4 -DUSE_HAL_DRIVER -DSTM32WL55xx -c -I../../Core/Inc -I../../LoRaWAN/App -I../../LoRaWAN/Target -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc -I../../../../../../../Drivers/STM32WLxx_HAL_Driver/Inc/Legacy -I../../../../../../../Utilities/trace/adv_trace -I../../../../../../../Utilities/misc -I../../../../../../../Utilities/sequencer -I../../../../../../../Utilities/timer -I../../../../../../../Utilities/lpm/tiny_lpm -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler/Packages -I../../../../../../../Drivers/CMSIS/Device/ST/STM32WLxx/Include -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Crypto -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac/Region -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Mac -I../../../../../../../Middlewares/Third_Party/LoRaWAN/LmHandler -I../../../../../../../Middlewares/Third_Party/LoRaWAN/Utilities -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy -I../../../../../../../Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver -I../../../../../../../Drivers/CMSIS/Include -I../../../../../../../Drivers/BSP/STM32WLxx_Nucleo -Og -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o: D:/ONEDRIVE/STM32WLV13/Drivers/STM32WLxx_HAL_Driver/Src/stm32wlxx_hal_pwr_ex.c Drivers/STM32WLxx_HAL_Driver/subdir.mk
@@ -126,7 +136,7 @@ Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.o: D:/ONEDRIVE/STM32WLV13/Drivers/
clean: clean-Drivers-2f-STM32WLxx_HAL_Driver
clean-Drivers-2f-STM32WLxx_HAL_Driver:
- -$(RM) ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.su
+ -$(RM) ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_adc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_cortex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_dma_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_exti.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rtc_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_subghz.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_tim_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_uart_ex.su ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.cyclo ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.d ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.o ./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_ll_adc.su
.PHONY: clean-Drivers-2f-STM32WLxx_HAL_Driver
diff --git a/STM32CubeIDE/Debug/Middlewares/LoRaWAN/subdir.mk b/STM32CubeIDE/Debug/Middlewares/LoRaWAN/subdir.mk
index 1d64686..9bff685 100644
--- a/STM32CubeIDE/Debug/Middlewares/LoRaWAN/subdir.mk
+++ b/STM32CubeIDE/Debug/Middlewares/LoRaWAN/subdir.mk
@@ -1,112 +1,112 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/LmHandler.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/Packages/LmhpCompliance.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/Packages/LmhpPackagesRegistration.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMac.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacAdr.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacClassB.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacCommands.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacConfirmQueue.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacCrypto.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacParser.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacSerializer.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/NvmDataMgmt.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/Region.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionAS923.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionAU915.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionBaseUS.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470A20.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470A26.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470B20.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470B26.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN779.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCommon.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionEU433.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionEU868.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionIN865.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionKR920.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionRU864.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionUS915.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/cmac.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/lorawan_aes.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/soft-se.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/LmHandler.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/Packages/LmhpCompliance.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/Packages/LmhpPackagesRegistration.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMac.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacAdr.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacClassB.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacCommands.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacConfirmQueue.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacCrypto.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacParser.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacSerializer.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/LmHandler/NvmDataMgmt.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/Region.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionAS923.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionAU915.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionBaseUS.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470A20.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470A26.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470B20.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN470B26.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCN779.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionCommon.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionEU433.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionEU868.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionIN865.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionKR920.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionRU864.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Mac/Region/RegionUS915.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/cmac.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/lorawan_aes.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Crypto/soft-se.c \
D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/LoRaWAN/Utilities/utilities.c
-OBJS += \
-./Middlewares/LoRaWAN/LmHandler.o \
-./Middlewares/LoRaWAN/LmhpCompliance.o \
-./Middlewares/LoRaWAN/LmhpPackagesRegistration.o \
-./Middlewares/LoRaWAN/LoRaMac.o \
-./Middlewares/LoRaWAN/LoRaMacAdr.o \
-./Middlewares/LoRaWAN/LoRaMacClassB.o \
-./Middlewares/LoRaWAN/LoRaMacCommands.o \
-./Middlewares/LoRaWAN/LoRaMacConfirmQueue.o \
-./Middlewares/LoRaWAN/LoRaMacCrypto.o \
-./Middlewares/LoRaWAN/LoRaMacParser.o \
-./Middlewares/LoRaWAN/LoRaMacSerializer.o \
-./Middlewares/LoRaWAN/NvmDataMgmt.o \
-./Middlewares/LoRaWAN/Region.o \
-./Middlewares/LoRaWAN/RegionAS923.o \
-./Middlewares/LoRaWAN/RegionAU915.o \
-./Middlewares/LoRaWAN/RegionBaseUS.o \
-./Middlewares/LoRaWAN/RegionCN470.o \
-./Middlewares/LoRaWAN/RegionCN470A20.o \
-./Middlewares/LoRaWAN/RegionCN470A26.o \
-./Middlewares/LoRaWAN/RegionCN470B20.o \
-./Middlewares/LoRaWAN/RegionCN470B26.o \
-./Middlewares/LoRaWAN/RegionCN779.o \
-./Middlewares/LoRaWAN/RegionCommon.o \
-./Middlewares/LoRaWAN/RegionEU433.o \
-./Middlewares/LoRaWAN/RegionEU868.o \
-./Middlewares/LoRaWAN/RegionIN865.o \
-./Middlewares/LoRaWAN/RegionKR920.o \
-./Middlewares/LoRaWAN/RegionRU864.o \
-./Middlewares/LoRaWAN/RegionUS915.o \
-./Middlewares/LoRaWAN/cmac.o \
-./Middlewares/LoRaWAN/lorawan_aes.o \
-./Middlewares/LoRaWAN/soft-se.o \
+OBJS += \
+./Middlewares/LoRaWAN/LmHandler.o \
+./Middlewares/LoRaWAN/LmhpCompliance.o \
+./Middlewares/LoRaWAN/LmhpPackagesRegistration.o \
+./Middlewares/LoRaWAN/LoRaMac.o \
+./Middlewares/LoRaWAN/LoRaMacAdr.o \
+./Middlewares/LoRaWAN/LoRaMacClassB.o \
+./Middlewares/LoRaWAN/LoRaMacCommands.o \
+./Middlewares/LoRaWAN/LoRaMacConfirmQueue.o \
+./Middlewares/LoRaWAN/LoRaMacCrypto.o \
+./Middlewares/LoRaWAN/LoRaMacParser.o \
+./Middlewares/LoRaWAN/LoRaMacSerializer.o \
+./Middlewares/LoRaWAN/NvmDataMgmt.o \
+./Middlewares/LoRaWAN/Region.o \
+./Middlewares/LoRaWAN/RegionAS923.o \
+./Middlewares/LoRaWAN/RegionAU915.o \
+./Middlewares/LoRaWAN/RegionBaseUS.o \
+./Middlewares/LoRaWAN/RegionCN470.o \
+./Middlewares/LoRaWAN/RegionCN470A20.o \
+./Middlewares/LoRaWAN/RegionCN470A26.o \
+./Middlewares/LoRaWAN/RegionCN470B20.o \
+./Middlewares/LoRaWAN/RegionCN470B26.o \
+./Middlewares/LoRaWAN/RegionCN779.o \
+./Middlewares/LoRaWAN/RegionCommon.o \
+./Middlewares/LoRaWAN/RegionEU433.o \
+./Middlewares/LoRaWAN/RegionEU868.o \
+./Middlewares/LoRaWAN/RegionIN865.o \
+./Middlewares/LoRaWAN/RegionKR920.o \
+./Middlewares/LoRaWAN/RegionRU864.o \
+./Middlewares/LoRaWAN/RegionUS915.o \
+./Middlewares/LoRaWAN/cmac.o \
+./Middlewares/LoRaWAN/lorawan_aes.o \
+./Middlewares/LoRaWAN/soft-se.o \
./Middlewares/LoRaWAN/utilities.o
-C_DEPS += \
-./Middlewares/LoRaWAN/LmHandler.d \
-./Middlewares/LoRaWAN/LmhpCompliance.d \
-./Middlewares/LoRaWAN/LmhpPackagesRegistration.d \
-./Middlewares/LoRaWAN/LoRaMac.d \
-./Middlewares/LoRaWAN/LoRaMacAdr.d \
-./Middlewares/LoRaWAN/LoRaMacClassB.d \
-./Middlewares/LoRaWAN/LoRaMacCommands.d \
-./Middlewares/LoRaWAN/LoRaMacConfirmQueue.d \
-./Middlewares/LoRaWAN/LoRaMacCrypto.d \
-./Middlewares/LoRaWAN/LoRaMacParser.d \
-./Middlewares/LoRaWAN/LoRaMacSerializer.d \
-./Middlewares/LoRaWAN/NvmDataMgmt.d \
-./Middlewares/LoRaWAN/Region.d \
-./Middlewares/LoRaWAN/RegionAS923.d \
-./Middlewares/LoRaWAN/RegionAU915.d \
-./Middlewares/LoRaWAN/RegionBaseUS.d \
-./Middlewares/LoRaWAN/RegionCN470.d \
-./Middlewares/LoRaWAN/RegionCN470A20.d \
-./Middlewares/LoRaWAN/RegionCN470A26.d \
-./Middlewares/LoRaWAN/RegionCN470B20.d \
-./Middlewares/LoRaWAN/RegionCN470B26.d \
-./Middlewares/LoRaWAN/RegionCN779.d \
-./Middlewares/LoRaWAN/RegionCommon.d \
-./Middlewares/LoRaWAN/RegionEU433.d \
-./Middlewares/LoRaWAN/RegionEU868.d \
-./Middlewares/LoRaWAN/RegionIN865.d \
-./Middlewares/LoRaWAN/RegionKR920.d \
-./Middlewares/LoRaWAN/RegionRU864.d \
-./Middlewares/LoRaWAN/RegionUS915.d \
-./Middlewares/LoRaWAN/cmac.d \
-./Middlewares/LoRaWAN/lorawan_aes.d \
-./Middlewares/LoRaWAN/soft-se.d \
+C_DEPS += \
+./Middlewares/LoRaWAN/LmHandler.d \
+./Middlewares/LoRaWAN/LmhpCompliance.d \
+./Middlewares/LoRaWAN/LmhpPackagesRegistration.d \
+./Middlewares/LoRaWAN/LoRaMac.d \
+./Middlewares/LoRaWAN/LoRaMacAdr.d \
+./Middlewares/LoRaWAN/LoRaMacClassB.d \
+./Middlewares/LoRaWAN/LoRaMacCommands.d \
+./Middlewares/LoRaWAN/LoRaMacConfirmQueue.d \
+./Middlewares/LoRaWAN/LoRaMacCrypto.d \
+./Middlewares/LoRaWAN/LoRaMacParser.d \
+./Middlewares/LoRaWAN/LoRaMacSerializer.d \
+./Middlewares/LoRaWAN/NvmDataMgmt.d \
+./Middlewares/LoRaWAN/Region.d \
+./Middlewares/LoRaWAN/RegionAS923.d \
+./Middlewares/LoRaWAN/RegionAU915.d \
+./Middlewares/LoRaWAN/RegionBaseUS.d \
+./Middlewares/LoRaWAN/RegionCN470.d \
+./Middlewares/LoRaWAN/RegionCN470A20.d \
+./Middlewares/LoRaWAN/RegionCN470A26.d \
+./Middlewares/LoRaWAN/RegionCN470B20.d \
+./Middlewares/LoRaWAN/RegionCN470B26.d \
+./Middlewares/LoRaWAN/RegionCN779.d \
+./Middlewares/LoRaWAN/RegionCommon.d \
+./Middlewares/LoRaWAN/RegionEU433.d \
+./Middlewares/LoRaWAN/RegionEU868.d \
+./Middlewares/LoRaWAN/RegionIN865.d \
+./Middlewares/LoRaWAN/RegionKR920.d \
+./Middlewares/LoRaWAN/RegionRU864.d \
+./Middlewares/LoRaWAN/RegionUS915.d \
+./Middlewares/LoRaWAN/cmac.d \
+./Middlewares/LoRaWAN/lorawan_aes.d \
+./Middlewares/LoRaWAN/soft-se.d \
./Middlewares/LoRaWAN/utilities.d
diff --git a/STM32CubeIDE/Debug/Middlewares/SubGHz_Phy/subdir.mk b/STM32CubeIDE/Debug/Middlewares/SubGHz_Phy/subdir.mk
index 97ac040..d30f4e3 100644
--- a/STM32CubeIDE/Debug/Middlewares/SubGHz_Phy/subdir.mk
+++ b/STM32CubeIDE/Debug/Middlewares/SubGHz_Phy/subdir.mk
@@ -1,22 +1,22 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver/radio.c \
-D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver/radio_driver.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver/radio.c \
+D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver/radio_driver.c \
D:/ONEDRIVE/STM32WLV13/Middlewares/Third_Party/SubGHz_Phy/stm32_radio_driver/radio_fw.c
-OBJS += \
-./Middlewares/SubGHz_Phy/radio.o \
-./Middlewares/SubGHz_Phy/radio_driver.o \
+OBJS += \
+./Middlewares/SubGHz_Phy/radio.o \
+./Middlewares/SubGHz_Phy/radio_driver.o \
./Middlewares/SubGHz_Phy/radio_fw.o
-C_DEPS += \
-./Middlewares/SubGHz_Phy/radio.d \
-./Middlewares/SubGHz_Phy/radio_driver.d \
+C_DEPS += \
+./Middlewares/SubGHz_Phy/radio.d \
+./Middlewares/SubGHz_Phy/radio_driver.d \
./Middlewares/SubGHz_Phy/radio_fw.d
diff --git a/STM32CubeIDE/Debug/Utilities/subdir.mk b/STM32CubeIDE/Debug/Utilities/subdir.mk
index 2b11c27..af2fcc2 100644
--- a/STM32CubeIDE/Debug/Utilities/subdir.mk
+++ b/STM32CubeIDE/Debug/Utilities/subdir.mk
@@ -1,37 +1,37 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
-C_SRCS += \
-D:/ONEDRIVE/STM32WLV13/Utilities/trace/adv_trace/stm32_adv_trace.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/lpm/tiny_lpm/stm32_lpm.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_mem.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/sequencer/stm32_seq.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_systime.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/timer/stm32_timer.c \
-D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_tiny_sscanf.c \
+C_SRCS += \
+D:/ONEDRIVE/STM32WLV13/Utilities/trace/adv_trace/stm32_adv_trace.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/lpm/tiny_lpm/stm32_lpm.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_mem.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/sequencer/stm32_seq.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_systime.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/timer/stm32_timer.c \
+D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_tiny_sscanf.c \
D:/ONEDRIVE/STM32WLV13/Utilities/misc/stm32_tiny_vsnprintf.c
-OBJS += \
-./Utilities/stm32_adv_trace.o \
-./Utilities/stm32_lpm.o \
-./Utilities/stm32_mem.o \
-./Utilities/stm32_seq.o \
-./Utilities/stm32_systime.o \
-./Utilities/stm32_timer.o \
-./Utilities/stm32_tiny_sscanf.o \
+OBJS += \
+./Utilities/stm32_adv_trace.o \
+./Utilities/stm32_lpm.o \
+./Utilities/stm32_mem.o \
+./Utilities/stm32_seq.o \
+./Utilities/stm32_systime.o \
+./Utilities/stm32_timer.o \
+./Utilities/stm32_tiny_sscanf.o \
./Utilities/stm32_tiny_vsnprintf.o
-C_DEPS += \
-./Utilities/stm32_adv_trace.d \
-./Utilities/stm32_lpm.d \
-./Utilities/stm32_mem.d \
-./Utilities/stm32_seq.d \
-./Utilities/stm32_systime.d \
-./Utilities/stm32_timer.d \
-./Utilities/stm32_tiny_sscanf.d \
+C_DEPS += \
+./Utilities/stm32_adv_trace.d \
+./Utilities/stm32_lpm.d \
+./Utilities/stm32_mem.d \
+./Utilities/stm32_seq.d \
+./Utilities/stm32_systime.d \
+./Utilities/stm32_timer.d \
+./Utilities/stm32_tiny_sscanf.d \
./Utilities/stm32_tiny_vsnprintf.d
diff --git a/STM32CubeIDE/Debug/makefile b/STM32CubeIDE/Debug/makefile
index b72bf60..6de5c9c 100644
--- a/STM32CubeIDE/Debug/makefile
+++ b/STM32CubeIDE/Debug/makefile
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
-include ../makefile.init
diff --git a/STM32CubeIDE/Debug/objects.list b/STM32CubeIDE/Debug/objects.list
index 6b2f066..429760c 100644
--- a/STM32CubeIDE/Debug/objects.list
+++ b/STM32CubeIDE/Debug/objects.list
@@ -1,20 +1,24 @@
"./Application/User/Core/adc.o"
"./Application/User/Core/adc_if.o"
"./Application/User/Core/dma.o"
+"./Application/User/Core/ev1527.o"
"./Application/User/Core/flash_if.o"
"./Application/User/Core/gpio.o"
"./Application/User/Core/main.o"
"./Application/User/Core/rtc.o"
+"./Application/User/Core/sensirion_common.o"
+"./Application/User/Core/sht3x.o"
"./Application/User/Core/stm32_lpm_if.o"
"./Application/User/Core/stm32wlxx_hal_msp.o"
"./Application/User/Core/stm32wlxx_it.o"
-"./Application/User/Core/sts_weight_scale.o"
+"./Application/User/Core/sts_aq_o3.o"
"./Application/User/Core/subghz.o"
"./Application/User/Core/sys_app.o"
"./Application/User/Core/sys_debug.o"
"./Application/User/Core/sys_sensors.o"
"./Application/User/Core/syscalls.o"
"./Application/User/Core/sysmem.o"
+"./Application/User/Core/tim.o"
"./Application/User/Core/timer_if.o"
"./Application/User/Core/usart.o"
"./Application/User/Core/usart_if.o"
@@ -37,6 +41,8 @@
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash.o"
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_flash_ex.o"
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_gpio.o"
+"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c.o"
+"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_i2c_ex.o"
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr.o"
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_pwr_ex.o"
"./Drivers/STM32WLxx_HAL_Driver/stm32wlxx_hal_rcc.o"
diff --git a/STM32CubeIDE/Debug/objects.mk b/STM32CubeIDE/Debug/objects.mk
index 758de29..fca83df 100644
--- a/STM32CubeIDE/Debug/objects.mk
+++ b/STM32CubeIDE/Debug/objects.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
USER_OBJS :=
diff --git a/STM32CubeIDE/Debug/sources.mk b/STM32CubeIDE/Debug/sources.mk
index 229c138..9c1ebdd 100644
--- a/STM32CubeIDE/Debug/sources.mk
+++ b/STM32CubeIDE/Debug/sources.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
ELF_SRCS :=
diff --git a/STM32CubeIDE/Release/Application/User/Core/subdir.mk b/STM32CubeIDE/Release/Application/User/Core/subdir.mk
index 69777cc..667c9da 100644
--- a/STM32CubeIDE/Release/Application/User/Core/subdir.mk
+++ b/STM32CubeIDE/Release/Application/User/Core/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Application/User/LoRaWAN/App/subdir.mk b/STM32CubeIDE/Release/Application/User/LoRaWAN/App/subdir.mk
index 387bd76..548b4c3 100644
--- a/STM32CubeIDE/Release/Application/User/LoRaWAN/App/subdir.mk
+++ b/STM32CubeIDE/Release/Application/User/LoRaWAN/App/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Application/User/LoRaWAN/Target/subdir.mk b/STM32CubeIDE/Release/Application/User/LoRaWAN/Target/subdir.mk
index 6666631..5ed22fd 100644
--- a/STM32CubeIDE/Release/Application/User/LoRaWAN/Target/subdir.mk
+++ b/STM32CubeIDE/Release/Application/User/LoRaWAN/Target/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Application/User/Startup/subdir.mk b/STM32CubeIDE/Release/Application/User/Startup/subdir.mk
index 492a553..e9af0ac 100644
--- a/STM32CubeIDE/Release/Application/User/Startup/subdir.mk
+++ b/STM32CubeIDE/Release/Application/User/Startup/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk b/STM32CubeIDE/Release/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
index aad73a3..faffd06 100644
--- a/STM32CubeIDE/Release/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
+++ b/STM32CubeIDE/Release/Drivers/BSP/STM32WLxx_Nucleo/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk b/STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk
index 377fb07..7a2b597 100644
--- a/STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk
+++ b/STM32CubeIDE/Release/Drivers/CMSIS/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Drivers/STM32WLxx_HAL_Driver/subdir.mk b/STM32CubeIDE/Release/Drivers/STM32WLxx_HAL_Driver/subdir.mk
index 7f8ee72..4395948 100644
--- a/STM32CubeIDE/Release/Drivers/STM32WLxx_HAL_Driver/subdir.mk
+++ b/STM32CubeIDE/Release/Drivers/STM32WLxx_HAL_Driver/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Middlewares/LoRaWAN/subdir.mk b/STM32CubeIDE/Release/Middlewares/LoRaWAN/subdir.mk
index e657ffa..19b3a87 100644
--- a/STM32CubeIDE/Release/Middlewares/LoRaWAN/subdir.mk
+++ b/STM32CubeIDE/Release/Middlewares/LoRaWAN/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Middlewares/SubGHz_Phy/subdir.mk b/STM32CubeIDE/Release/Middlewares/SubGHz_Phy/subdir.mk
index 2eafe15..129e7d6 100644
--- a/STM32CubeIDE/Release/Middlewares/SubGHz_Phy/subdir.mk
+++ b/STM32CubeIDE/Release/Middlewares/SubGHz_Phy/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/Utilities/subdir.mk b/STM32CubeIDE/Release/Utilities/subdir.mk
index 4d86651..e188ce4 100644
--- a/STM32CubeIDE/Release/Utilities/subdir.mk
+++ b/STM32CubeIDE/Release/Utilities/subdir.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
diff --git a/STM32CubeIDE/Release/WL55JC_AS923.elf b/STM32CubeIDE/Release/WL55JC_AS923.elf
index f8df437..0cc3470 100644
Binary files a/STM32CubeIDE/Release/WL55JC_AS923.elf and b/STM32CubeIDE/Release/WL55JC_AS923.elf differ
diff --git a/STM32CubeIDE/Release/makefile b/STM32CubeIDE/Release/makefile
index b8a6e5d..85b0915 100644
--- a/STM32CubeIDE/Release/makefile
+++ b/STM32CubeIDE/Release/makefile
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
-include ../makefile.init
diff --git a/STM32CubeIDE/Release/objects.mk b/STM32CubeIDE/Release/objects.mk
index 758de29..fca83df 100644
--- a/STM32CubeIDE/Release/objects.mk
+++ b/STM32CubeIDE/Release/objects.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
USER_OBJS :=
diff --git a/STM32CubeIDE/Release/sources.mk b/STM32CubeIDE/Release/sources.mk
index 229c138..9c1ebdd 100644
--- a/STM32CubeIDE/Release/sources.mk
+++ b/STM32CubeIDE/Release/sources.mk
@@ -1,6 +1,6 @@
################################################################################
# Automatically-generated file. Do not edit!
-# Toolchain: GNU Tools for STM32 (12.3.rel1)
+# Toolchain: GNU Tools for STM32 (13.3.rel1)
################################################################################
ELF_SRCS :=