增加虚拟USB调试接口

This commit is contained in:
Michael Chemic 2024-08-05 17:28:40 +08:00
parent 1b1a62e045
commit 2c14b49c27
128 changed files with 3922 additions and 6398 deletions

File diff suppressed because one or more lines are too long

View File

@ -32,15 +32,12 @@ extern "C" {
/* USER CODE END Includes */ /* USER CODE END Includes */
extern FDCAN_HandleTypeDef hfdcan1;
extern FDCAN_HandleTypeDef hfdcan2; extern FDCAN_HandleTypeDef hfdcan2;
/* USER CODE BEGIN Private defines */ /* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */ /* USER CODE END Private defines */
void MX_FDCAN1_Init(void);
void MX_FDCAN2_Init(void); void MX_FDCAN2_Init(void);
/* USER CODE BEGIN Prototypes */ /* USER CODE BEGIN Prototypes */

View File

@ -53,7 +53,7 @@
/*#define HAL_NAND_MODULE_ENABLED */ /*#define HAL_NAND_MODULE_ENABLED */
/*#define HAL_NOR_MODULE_ENABLED */ /*#define HAL_NOR_MODULE_ENABLED */
/*#define HAL_OPAMP_MODULE_ENABLED */ /*#define HAL_OPAMP_MODULE_ENABLED */
/*#define HAL_PCD_MODULE_ENABLED */ #define HAL_PCD_MODULE_ENABLED
/*#define HAL_QSPI_MODULE_ENABLED */ /*#define HAL_QSPI_MODULE_ENABLED */
/*#define HAL_RNG_MODULE_ENABLED */ /*#define HAL_RNG_MODULE_ENABLED */
/*#define HAL_RTC_MODULE_ENABLED */ /*#define HAL_RTC_MODULE_ENABLED */

52
Core/Inc/usb.h Normal file
View File

@ -0,0 +1,52 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file usb.h
* @brief This file contains all the function prototypes for
* the usb.c file
******************************************************************************
* @attention
*
* Copyright (c) 2024 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* USER CODE END Header */
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USB_H__
#define __USB_H__
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "main.h"
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
extern PCD_HandleTypeDef hpcd_USB_FS;
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
void MX_USB_PCD_Init(void);
/* USER CODE BEGIN Prototypes */
/* USER CODE END Prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __USB_H__ */

View File

@ -24,47 +24,8 @@
/* USER CODE END 0 */ /* USER CODE END 0 */
FDCAN_HandleTypeDef hfdcan1;
FDCAN_HandleTypeDef hfdcan2; FDCAN_HandleTypeDef hfdcan2;
/* FDCAN1 init function */
void MX_FDCAN1_Init(void)
{
/* USER CODE BEGIN FDCAN1_Init 0 */
/* USER CODE END FDCAN1_Init 0 */
/* USER CODE BEGIN FDCAN1_Init 1 */
/* USER CODE END FDCAN1_Init 1 */
hfdcan1.Instance = FDCAN1;
hfdcan1.Init.ClockDivider = FDCAN_CLOCK_DIV1;
hfdcan1.Init.FrameFormat = FDCAN_FRAME_CLASSIC;
hfdcan1.Init.Mode = FDCAN_MODE_NORMAL;
hfdcan1.Init.AutoRetransmission = DISABLE;
hfdcan1.Init.TransmitPause = DISABLE;
hfdcan1.Init.ProtocolException = DISABLE;
hfdcan1.Init.NominalPrescaler = 16;
hfdcan1.Init.NominalSyncJumpWidth = 1;
hfdcan1.Init.NominalTimeSeg1 = 2;
hfdcan1.Init.NominalTimeSeg2 = 2;
hfdcan1.Init.DataPrescaler = 1;
hfdcan1.Init.DataSyncJumpWidth = 1;
hfdcan1.Init.DataTimeSeg1 = 1;
hfdcan1.Init.DataTimeSeg2 = 1;
hfdcan1.Init.StdFiltersNbr = 0;
hfdcan1.Init.ExtFiltersNbr = 0;
hfdcan1.Init.TxFifoQueueMode = FDCAN_TX_FIFO_OPERATION;
if (HAL_FDCAN_Init(&hfdcan1) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN FDCAN1_Init 2 */
/* USER CODE END FDCAN1_Init 2 */
}
/* FDCAN2 init function */ /* FDCAN2 init function */
void MX_FDCAN2_Init(void) void MX_FDCAN2_Init(void)
{ {
@ -104,51 +65,12 @@ void MX_FDCAN2_Init(void)
} }
static uint32_t HAL_RCC_FDCAN_CLK_ENABLED=0;
void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* fdcanHandle) void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* fdcanHandle)
{ {
GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitTypeDef GPIO_InitStruct = {0};
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0}; RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
if(fdcanHandle->Instance==FDCAN1) if(fdcanHandle->Instance==FDCAN2)
{
/* USER CODE BEGIN FDCAN1_MspInit 0 */
/* USER CODE END FDCAN1_MspInit 0 */
/** Initializes the peripherals clocks
*/
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_FDCAN;
PeriphClkInit.FdcanClockSelection = RCC_FDCANCLKSOURCE_PCLK1;
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
{
Error_Handler();
}
/* FDCAN1 clock enable */
HAL_RCC_FDCAN_CLK_ENABLED++;
if(HAL_RCC_FDCAN_CLK_ENABLED==1){
__HAL_RCC_FDCAN_CLK_ENABLE();
}
__HAL_RCC_GPIOA_CLK_ENABLE();
/**FDCAN1 GPIO Configuration
PA11 ------> FDCAN1_RX
PA12 ------> FDCAN1_TX
*/
GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF9_FDCAN1;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
/* USER CODE BEGIN FDCAN1_MspInit 1 */
/* USER CODE END FDCAN1_MspInit 1 */
}
else if(fdcanHandle->Instance==FDCAN2)
{ {
/* USER CODE BEGIN FDCAN2_MspInit 0 */ /* USER CODE BEGIN FDCAN2_MspInit 0 */
@ -164,10 +86,7 @@ void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* fdcanHandle)
} }
/* FDCAN2 clock enable */ /* FDCAN2 clock enable */
HAL_RCC_FDCAN_CLK_ENABLED++; __HAL_RCC_FDCAN_CLK_ENABLE();
if(HAL_RCC_FDCAN_CLK_ENABLED==1){
__HAL_RCC_FDCAN_CLK_ENABLE();
}
__HAL_RCC_GPIOB_CLK_ENABLE(); __HAL_RCC_GPIOB_CLK_ENABLE();
/**FDCAN2 GPIO Configuration /**FDCAN2 GPIO Configuration
@ -190,37 +109,13 @@ void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* fdcanHandle)
void HAL_FDCAN_MspDeInit(FDCAN_HandleTypeDef* fdcanHandle) void HAL_FDCAN_MspDeInit(FDCAN_HandleTypeDef* fdcanHandle)
{ {
if(fdcanHandle->Instance==FDCAN1) if(fdcanHandle->Instance==FDCAN2)
{
/* USER CODE BEGIN FDCAN1_MspDeInit 0 */
/* USER CODE END FDCAN1_MspDeInit 0 */
/* Peripheral clock disable */
HAL_RCC_FDCAN_CLK_ENABLED--;
if(HAL_RCC_FDCAN_CLK_ENABLED==0){
__HAL_RCC_FDCAN_CLK_DISABLE();
}
/**FDCAN1 GPIO Configuration
PA11 ------> FDCAN1_RX
PA12 ------> FDCAN1_TX
*/
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_11|GPIO_PIN_12);
/* USER CODE BEGIN FDCAN1_MspDeInit 1 */
/* USER CODE END FDCAN1_MspDeInit 1 */
}
else if(fdcanHandle->Instance==FDCAN2)
{ {
/* USER CODE BEGIN FDCAN2_MspDeInit 0 */ /* USER CODE BEGIN FDCAN2_MspDeInit 0 */
/* USER CODE END FDCAN2_MspDeInit 0 */ /* USER CODE END FDCAN2_MspDeInit 0 */
/* Peripheral clock disable */ /* Peripheral clock disable */
HAL_RCC_FDCAN_CLK_ENABLED--; __HAL_RCC_FDCAN_CLK_DISABLE();
if(HAL_RCC_FDCAN_CLK_ENABLED==0){
__HAL_RCC_FDCAN_CLK_DISABLE();
}
/**FDCAN2 GPIO Configuration /**FDCAN2 GPIO Configuration
PB12 ------> FDCAN2_RX PB12 ------> FDCAN2_RX

View File

@ -38,6 +38,7 @@
#include "i2c.h" #include "i2c.h"
#include "usart.h" #include "usart.h"
#include "tim.h" #include "tim.h"
#include "usb.h"
#include "gpio.h" #include "gpio.h"
/* Private includes ----------------------------------------------------------*/ /* Private includes ----------------------------------------------------------*/
@ -172,11 +173,11 @@ int main(void)
MX_I2C1_Init(); MX_I2C1_Init();
MX_I2C2_Init(); MX_I2C2_Init();
MX_USART3_UART_Init(); MX_USART3_UART_Init();
MX_FDCAN1_Init();
MX_ADC3_Init(); MX_ADC3_Init();
MX_FDCAN2_Init(); MX_FDCAN2_Init();
MX_TIM2_Init(); MX_TIM2_Init();
MX_TIM3_Init(); MX_TIM3_Init();
MX_USB_PCD_Init();
/* USER CODE BEGIN 2 */ /* USER CODE BEGIN 2 */
// ÅäÖà NVIC ÖжÏÓÅÏȼ¶ºÍʹÄÜ // ÅäÖà NVIC ÖжÏÓÅÏȼ¶ºÍʹÄÜ
@ -263,9 +264,10 @@ void SystemClock_Config(void)
/** Initializes the RCC Oscillators according to the specified parameters /** Initializes the RCC Oscillators according to the specified parameters
* in the RCC_OscInitTypeDef structure. * in the RCC_OscInitTypeDef structure.
*/ */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI|RCC_OSCILLATORTYPE_HSI48;
RCC_OscInitStruct.HSIState = RCC_HSI_ON; RCC_OscInitStruct.HSIState = RCC_HSI_ON;
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
RCC_OscInitStruct.PLL.PLLM = RCC_PLLM_DIV4; RCC_OscInitStruct.PLL.PLLM = RCC_PLLM_DIV4;

104
Core/Src/usb.c Normal file
View File

@ -0,0 +1,104 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file usb.c
* @brief This file provides code for the configuration
* of the USB instances.
******************************************************************************
* @attention
*
* Copyright (c) 2024 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "usb.h"
/* USER CODE BEGIN 0 */
/* USER CODE END 0 */
PCD_HandleTypeDef hpcd_USB_FS;
/* USB init function */
void MX_USB_PCD_Init(void)
{
/* USER CODE BEGIN USB_Init 0 */
/* USER CODE END USB_Init 0 */
/* USER CODE BEGIN USB_Init 1 */
/* USER CODE END USB_Init 1 */
hpcd_USB_FS.Instance = USB;
hpcd_USB_FS.Init.dev_endpoints = 8;
hpcd_USB_FS.Init.speed = PCD_SPEED_FULL;
hpcd_USB_FS.Init.phy_itface = PCD_PHY_EMBEDDED;
hpcd_USB_FS.Init.Sof_enable = DISABLE;
hpcd_USB_FS.Init.low_power_enable = DISABLE;
hpcd_USB_FS.Init.lpm_enable = DISABLE;
hpcd_USB_FS.Init.battery_charging_enable = DISABLE;
if (HAL_PCD_Init(&hpcd_USB_FS) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN USB_Init 2 */
/* USER CODE END USB_Init 2 */
}
void HAL_PCD_MspInit(PCD_HandleTypeDef* pcdHandle)
{
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
if(pcdHandle->Instance==USB)
{
/* USER CODE BEGIN USB_MspInit 0 */
/* USER CODE END USB_MspInit 0 */
/** Initializes the peripherals clocks
*/
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USB;
PeriphClkInit.UsbClockSelection = RCC_USBCLKSOURCE_HSI48;
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
{
Error_Handler();
}
/* USB clock enable */
__HAL_RCC_USB_CLK_ENABLE();
/* USER CODE BEGIN USB_MspInit 1 */
/* USER CODE END USB_MspInit 1 */
}
}
void HAL_PCD_MspDeInit(PCD_HandleTypeDef* pcdHandle)
{
if(pcdHandle->Instance==USB)
{
/* USER CODE BEGIN USB_MspDeInit 0 */
/* USER CODE END USB_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_USB_CLK_DISABLE();
/* USER CODE BEGIN USB_MspDeInit 1 */
/* USER CODE END USB_MspDeInit 1 */
}
}
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */

View File

@ -20,5 +20,5 @@
"foc.h": "c" "foc.h": "c"
}, },
"todo-tree.tree.showBadges": true, "todo-tree.tree.showBadges": true,
"cmake.sourceDirectory": "C:/Users/Michael_Chemic/Desktop/STM32G474RETx_FOC/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink/STM32G474RETxDemoBlink" "cmake.sourceDirectory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp"
} }

View File

@ -21,7 +21,8 @@
"control.h": "c", "control.h": "c",
"pid.h": "c", "pid.h": "c",
"string.h": "c", "string.h": "c",
"foc.h": "c" "foc.h": "c",
"usb.h": "c"
}, },
"cmsis-csolution.actions": [ "cmsis-csolution.actions": [
{ {

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd"> <cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2024-07-28T07:20:20" tool="csolution 2.4.0"/> <created timestamp="2024-08-05T15:42:40" tool="csolution 2.4.0"/>
<info isLayer="false"> <info isLayer="false">
<description>Automatically generated project</description> <description>Automatically generated project</description>

File diff suppressed because one or more lines are too long

View File

@ -466,6 +466,18 @@
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2> <bDave2>0</bDave2>
<PathWithFileName>../Core/Src/usb.c</PathWithFileName>
<FilenameWithoutPath>usb.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>2</GroupNumber>
<FileNumber>18</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Core/Src/stm32g4xx_it.c</PathWithFileName> <PathWithFileName>../Core/Src/stm32g4xx_it.c</PathWithFileName>
<FilenameWithoutPath>stm32g4xx_it.c</FilenameWithoutPath> <FilenameWithoutPath>stm32g4xx_it.c</FilenameWithoutPath>
<RteFlg>0</RteFlg> <RteFlg>0</RteFlg>
@ -473,7 +485,7 @@
</File> </File>
<File> <File>
<GroupNumber>2</GroupNumber> <GroupNumber>2</GroupNumber>
<FileNumber>18</FileNumber> <FileNumber>19</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -493,7 +505,7 @@
<RteFlg>0</RteFlg> <RteFlg>0</RteFlg>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>19</FileNumber> <FileNumber>20</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -505,7 +517,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>20</FileNumber> <FileNumber>21</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -517,7 +529,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>21</FileNumber> <FileNumber>22</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -529,7 +541,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>22</FileNumber> <FileNumber>23</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -541,7 +553,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>23</FileNumber> <FileNumber>24</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -553,7 +565,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>24</FileNumber> <FileNumber>25</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -565,7 +577,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>25</FileNumber> <FileNumber>26</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -577,7 +589,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>26</FileNumber> <FileNumber>27</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -589,7 +601,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>27</FileNumber> <FileNumber>28</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -601,7 +613,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>28</FileNumber> <FileNumber>29</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -613,7 +625,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>29</FileNumber> <FileNumber>30</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -625,7 +637,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>30</FileNumber> <FileNumber>31</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -637,7 +649,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>31</FileNumber> <FileNumber>32</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -649,7 +661,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>32</FileNumber> <FileNumber>33</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -661,7 +673,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>33</FileNumber> <FileNumber>34</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -673,7 +685,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>34</FileNumber> <FileNumber>35</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -685,7 +697,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>35</FileNumber> <FileNumber>36</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -697,7 +709,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>36</FileNumber> <FileNumber>37</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -709,7 +721,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>37</FileNumber> <FileNumber>38</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -721,7 +733,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>38</FileNumber> <FileNumber>39</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -733,7 +745,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>39</FileNumber> <FileNumber>40</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -745,7 +757,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>40</FileNumber> <FileNumber>41</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -757,7 +769,7 @@
</File> </File>
<File> <File>
<GroupNumber>3</GroupNumber> <GroupNumber>3</GroupNumber>
<FileNumber>41</FileNumber> <FileNumber>42</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>
@ -767,6 +779,42 @@
<RteFlg>0</RteFlg> <RteFlg>0</RteFlg>
<bShared>0</bShared> <bShared>0</bShared>
</File> </File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>43</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd.c</PathWithFileName>
<FilenameWithoutPath>stm32g4xx_hal_pcd.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>44</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd_ex.c</PathWithFileName>
<FilenameWithoutPath>stm32g4xx_hal_pcd_ex.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>45</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_usb.c</PathWithFileName>
<FilenameWithoutPath>stm32g4xx_ll_usb.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
</Group> </Group>
<Group> <Group>
@ -777,7 +825,7 @@
<RteFlg>0</RteFlg> <RteFlg>0</RteFlg>
<File> <File>
<GroupNumber>4</GroupNumber> <GroupNumber>4</GroupNumber>
<FileNumber>42</FileNumber> <FileNumber>46</FileNumber>
<FileType>1</FileType> <FileType>1</FileType>
<tvExp>0</tvExp> <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg> <tvExpOptDlg>0</tvExpOptDlg>

View File

@ -826,6 +826,62 @@
</FileArmAds> </FileArmAds>
</FileOption> </FileOption>
</File> </File>
<File>
<FileName>usb.c</FileName>
<FileType>1</FileType>
<FilePath>../Core/Src/usb.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File> <File>
<FileName>stm32g4xx_it.c</FileName> <FileName>stm32g4xx_it.c</FileName>
<FileType>1</FileType> <FileType>1</FileType>
@ -1262,6 +1318,174 @@
<FileType>1</FileType> <FileType>1</FileType>
<FilePath>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c</FilePath> <FilePath>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c</FilePath>
</File> </File>
<File>
<FileName>stm32g4xx_hal_pcd.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>stm32g4xx_hal_pcd_ex.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd_ex.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>stm32g4xx_ll_usb.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_usb.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
</Files> </Files>
</Group> </Group>
<Group> <Group>

View File

@ -8,7 +8,7 @@ Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
License Information: xxx xxx License Information: xxx xxx
xxx xxx
User-based license: Keil MDK Community (non-commercial free of charge) User-based license: Keil MDK Community (non-commercial free of charge)
Valid until: Jun 1 2033. Cached until: Aug 3 2024 Valid until: Jun 1 2033. Cached until: Aug 12 2024
Tool Versions: Tool Versions:
Toolchain: Keil MDK Community (non-commercial free of charge Version: 5.37.0.0 Toolchain: Keil MDK Community (non-commercial free of charge Version: 5.37.0.0
@ -25,14 +25,59 @@ Dialog DLL: TCM.DLL V1.56.1.0
<h2>Project:</h2> <h2>Project:</h2>
C:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\STM32G474RETx_Demo_Blink.uvprojx C:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\STM32G474RETx_Demo_Blink.uvprojx
Project File Date: 07/27/2024 Project File Date: 08/05/2024
<h2>Output:</h2> <h2>Output:</h2>
*** Using Compiler 'V6.18', folder: 'D:\Keil_v5\ARM\ARMCLANG\Bin' *** Using Compiler 'V6.18', folder: 'D:\Keil_v5\ARM\ARMCLANG\Bin'
Build target 'STM32G474RETx_Demo_Blink' Rebuild target 'STM32G474RETx_Demo_Blink'
compiling control.c...
compiling HALL.c...
compiling pid.c... compiling pid.c...
compiling AS5600.c...
assembling startup_stm32g474xx.s...
compiling LowPass_Filter.c...
compiling gpio.c...
compiling ABZ.c...
compiling main.c...
compiling FOC.c...
compiling adc.c...
compiling dma.c...
compiling i2c.c...
compiling fdcan.c...
compiling stm32g4xx_hal_msp.c...
compiling usb.c...
compiling usart.c...
compiling stm32g4xx_it.c...
compiling stm32g4xx_ll_adc.c...
compiling tim.c...
compiling stm32g4xx_hal.c...
compiling stm32g4xx_hal_adc_ex.c...
compiling stm32g4xx_hal_adc.c...
compiling stm32g4xx_hal_rcc.c...
compiling stm32g4xx_hal_flash_ramfunc.c...
compiling stm32g4xx_hal_flash.c...
compiling stm32g4xx_hal_rcc_ex.c...
compiling stm32g4xx_hal_gpio.c...
compiling stm32g4xx_hal_flash_ex.c...
compiling stm32g4xx_hal_exti.c...
compiling stm32g4xx_hal_dma_ex.c...
compiling stm32g4xx_hal_dma.c...
compiling stm32g4xx_hal_pwr.c...
compiling stm32g4xx_hal_pwr_ex.c...
compiling stm32g4xx_hal_cortex.c...
compiling stm32g4xx_hal_i2c_ex.c...
compiling stm32g4xx_hal_uart_ex.c...
compiling stm32g4xx_hal_fdcan.c...
compiling stm32g4xx_hal_pcd_ex.c...
compiling system_stm32g4xx.c...
compiling stm32g4xx_hal_tim_ex.c...
compiling stm32g4xx_hal_pcd.c...
compiling stm32g4xx_ll_usb.c...
compiling stm32g4xx_hal_uart.c...
compiling stm32g4xx_hal_i2c.c...
compiling stm32g4xx_hal_tim.c...
linking... linking...
Program Size: Code=25952 RO-data=880 RW-data=32 ZI-data=3192 Program Size: Code=26512 RO-data=880 RW-data=32 ZI-data=3824
FromELF: creating hex file... FromELF: creating hex file...
"STM32G474RETx_Demo_Blink\STM32G474RETx_Demo_Blink.axf" - 0 Error(s), 0 Warning(s). "STM32G474RETx_Demo_Blink\STM32G474RETx_Demo_Blink.axf" - 0 Error(s), 0 Warning(s).
@ -58,7 +103,7 @@ Package Vendor: Keil
* Component: ARM::CMSIS:CORE:5.6.0 * Component: ARM::CMSIS:CORE:5.6.0
Include file: CMSIS/Core/Include/tz_context.h Include file: CMSIS/Core/Include/tz_context.h
Build Time Elapsed: 00:00:02 Build Time Elapsed: 00:00:06
</pre> </pre>
</body> </body>
</html> </html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -15,6 +15,7 @@
"stm32g474retx_demo_blink\i2c.o" "stm32g474retx_demo_blink\i2c.o"
"stm32g474retx_demo_blink\usart.o" "stm32g474retx_demo_blink\usart.o"
"stm32g474retx_demo_blink\tim.o" "stm32g474retx_demo_blink\tim.o"
"stm32g474retx_demo_blink\usb.o"
"stm32g474retx_demo_blink\stm32g4xx_it.o" "stm32g474retx_demo_blink\stm32g4xx_it.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_msp.o" "stm32g474retx_demo_blink\stm32g4xx_hal_msp.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_adc.o" "stm32g474retx_demo_blink\stm32g4xx_hal_adc.o"
@ -40,6 +41,9 @@
"stm32g474retx_demo_blink\stm32g4xx_hal_uart_ex.o" "stm32g474retx_demo_blink\stm32g4xx_hal_uart_ex.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_tim.o" "stm32g474retx_demo_blink\stm32g4xx_hal_tim.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_tim_ex.o" "stm32g474retx_demo_blink\stm32g4xx_hal_tim_ex.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_pcd.o"
"stm32g474retx_demo_blink\stm32g4xx_hal_pcd_ex.o"
"stm32g474retx_demo_blink\stm32g4xx_ll_usb.o"
"stm32g474retx_demo_blink\system_stm32g4xx.o" "stm32g474retx_demo_blink\system_stm32g4xx.o"
--library_type=microlib --strict --scatter "STM32G474RETx_Demo_Blink\STM32G474RETx_Demo_Blink.sct" --library_type=microlib --strict --scatter "STM32G474RETx_Demo_Blink\STM32G474RETx_Demo_Blink.sct"
--summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,10 @@
Dependencies for Project 'STM32G474RETx_Demo_Blink', Target 'STM32G474RETx_Demo_Blink': (DO NOT MODIFY !) Dependencies for Project 'STM32G474RETx_Demo_Blink', Target 'STM32G474RETx_Demo_Blink': (DO NOT MODIFY !)
CompilerVersion: 6180000::V6.18::ARMCLANG CompilerVersion: 6180000::V6.18::ARMCLANG
F (startup_stm32g474xx.s)(0x66A4B461)(--target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -masm=auto -c -gdwarf-4 -Wa,armasm,--pd,"__MICROLIB SETA 1" -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 537" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32G474xx SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o stm32g474retx_demo_blink/startup_stm32g474xx.o) F (startup_stm32g474xx.s)(0x66B07AF7)(--target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -masm=auto -c -gdwarf-4 -Wa,armasm,--pd,"__MICROLIB SETA 1" -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 537" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32G474xx SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o stm32g474retx_demo_blink/startup_stm32g474xx.o)
F (..\FOC_Related\AS5600\AS5600.c)(0x66A4F37C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/as5600.o -MD) F (..\FOC_Related\AS5600\AS5600.c)(0x66A4F37C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/as5600.o -MD)
I (..\FOC_Related\AS5600\AS5600.h)(0x668AAA87) I (..\FOC_Related\AS5600\AS5600.h)(0x668AAA87)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32G4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32G4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -36,6 +36,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -56,7 +59,7 @@ I (..\FOC_Related\FOC\FOC.h)(0x66A4584D)
I (..\Core\Inc\usart.h)(0x667E4DDA) I (..\Core\Inc\usart.h)(0x667E4DDA)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -88,6 +91,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -109,7 +115,7 @@ I (..\FOC_Related\LOWPASS_FILTER\LOWPASS_FILTER.h)(0x668FEFAB)
I (..\Core\Inc\adc.h)(0x668E9191) I (..\Core\Inc\adc.h)(0x668E9191)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -141,6 +147,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -154,7 +163,7 @@ F (..\FOC_Related\ABZ\ABZ.c)(0x66A4F185)(-xc -std=c99 --target=arm-arm-none-eabi
I (..\Core\Inc\tim.h)(0x668F4350) I (..\Core\Inc\tim.h)(0x668F4350)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -186,6 +195,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -198,10 +210,10 @@ I (..\FOC_Related\ABZ\ABZ.h)(0x66A3A434)
I (..\FOC_Related\FOC\foc.h)(0x66A4584D) I (..\FOC_Related\FOC\foc.h)(0x66A4584D)
I (..\Core\Inc\usart.h)(0x667E4DDA) I (..\Core\Inc\usart.h)(0x667E4DDA)
I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x625333C6) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x625333C6)
F (../Core/Src/main.c)(0x66A5856B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/main.o -MD) F (../Core/Src/main.c)(0x66B07AF6)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/main.o -MD)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -233,6 +245,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -242,10 +257,11 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB) I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB)
I (..\Core\Inc\adc.h)(0x668E9191) I (..\Core\Inc\adc.h)(0x668E9191)
I (..\Core\Inc\dma.h)(0x668E248C) I (..\Core\Inc\dma.h)(0x668E248C)
I (..\Core\Inc\fdcan.h)(0x668F434F) I (..\Core\Inc\fdcan.h)(0x66B07AF4)
I (..\Core\Inc\i2c.h)(0x667E4DDA) I (..\Core\Inc\i2c.h)(0x667E4DDA)
I (..\Core\Inc\usart.h)(0x667E4DDA) I (..\Core\Inc\usart.h)(0x667E4DDA)
I (..\Core\Inc\tim.h)(0x668F4350) I (..\Core\Inc\tim.h)(0x668F4350)
I (..\Core\Inc\usb.h)(0x66B07AF5)
I (..\Core\Inc\gpio.h)(0x667B9978) I (..\Core\Inc\gpio.h)(0x667B9978)
I (..\FOC_Related\FOC\foc.h)(0x66A4584D) I (..\FOC_Related\FOC\foc.h)(0x66A4584D)
I (..\FOC_Related\AS5600\as5600.h)(0x668AAA87) I (..\FOC_Related\AS5600\as5600.h)(0x668AAA87)
@ -256,7 +272,7 @@ F (../Core/Src/gpio.c)(0x668F434C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu
I (..\Core\Inc\gpio.h)(0x667B9978) I (..\Core\Inc\gpio.h)(0x667B9978)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -288,6 +304,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -300,7 +319,7 @@ F (../Core/Src/adc.c)(0x669090BD)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=
I (..\Core\Inc\adc.h)(0x668E9191) I (..\Core\Inc\adc.h)(0x668E9191)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -332,6 +351,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -343,7 +365,7 @@ F (../Core/Src/dma.c)(0x668FD9BD)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=
I (..\Core\Inc\dma.h)(0x668E248C) I (..\Core\Inc\dma.h)(0x668E248C)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -375,6 +397,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -383,11 +408,11 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB) I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB)
I (..\Core\Inc\adc.h)(0x668E9191) I (..\Core\Inc\adc.h)(0x668E9191)
F (../Core/Src/fdcan.c)(0x668F434F)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/fdcan.o -MD) F (../Core/Src/fdcan.c)(0x66B07AF4)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/fdcan.o -MD)
I (..\Core\Inc\fdcan.h)(0x668F434F) I (..\Core\Inc\fdcan.h)(0x66B07AF4)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -419,6 +444,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -431,7 +459,7 @@ F (../Core/Src/i2c.c)(0x66A4B45F)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=
I (..\Core\Inc\i2c.h)(0x667E4DDA) I (..\Core\Inc\i2c.h)(0x667E4DDA)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -463,6 +491,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -475,7 +506,7 @@ F (../Core/Src/usart.c)(0x6690954A)(-xc -std=c99 --target=arm-arm-none-eabi -mcp
I (..\Core\Inc\usart.h)(0x667E4DDA) I (..\Core\Inc\usart.h)(0x667E4DDA)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -507,6 +538,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -519,7 +553,7 @@ F (../Core/Src/tim.c)(0x66A44B5C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=
I (..\Core\Inc\tim.h)(0x668F4350) I (..\Core\Inc\tim.h)(0x668F4350)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -551,6 +585,56 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB)
I (..\Core\Inc\adc.h)(0x668E9191)
F (../Core/Src/usb.c)(0x66B07AF5)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/usb.o -MD)
I (..\Core\Inc\usb.h)(0x66B07AF5)
I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Include\core_cm4.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x625333C8)
I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x625333C6)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x625333C6)
I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C)
I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x625333C6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -562,7 +646,7 @@ I (..\Core\Inc\adc.h)(0x668E9191)
F (../Core/Src/stm32g4xx_it.c)(0x66A3A55B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_it.o -MD) F (../Core/Src/stm32g4xx_it.c)(0x66A3A55B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_it.o -MD)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -594,6 +678,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -606,7 +693,7 @@ I (..\Core\Inc\stm32g4xx_it.h)(0x66A3A55B)
F (../Core/Src/stm32g4xx_hal_msp.c)(0x667B9978)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_msp.o -MD) F (../Core/Src/stm32g4xx_hal_msp.c)(0x667B9978)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_msp.o -MD)
I (..\Core\Inc\main.h)(0x66978768) I (..\Core\Inc\main.h)(0x66978768)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -638,6 +725,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -648,7 +738,7 @@ I (..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h)(0x668FEFAB)
I (..\Core\Inc\adc.h)(0x668E9191) I (..\Core\Inc\adc.h)(0x668E9191)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_adc.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_adc.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -680,6 +770,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -688,7 +781,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_adc_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_adc_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -720,6 +813,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -729,7 +825,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_adc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_ll_adc.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_adc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_ll_adc.o -MD)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -761,6 +857,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -769,7 +868,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_rcc.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_rcc.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -801,6 +900,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -809,7 +911,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_rcc_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_rcc_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -841,6 +943,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -849,7 +954,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -881,6 +986,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -889,7 +997,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -921,6 +1029,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -929,7 +1040,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ramfunc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash_ramfunc.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ramfunc.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_flash_ramfunc.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -961,6 +1072,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -969,7 +1083,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_gpio.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_gpio.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_gpio.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_gpio.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1001,6 +1115,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1009,7 +1126,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_exti.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_exti.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_exti.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_exti.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1041,6 +1158,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1049,7 +1169,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_dma.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_dma.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1081,6 +1201,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1089,7 +1212,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_dma_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_dma_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1121,6 +1244,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1129,7 +1255,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pwr.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pwr.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1161,6 +1287,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1169,7 +1298,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pwr_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pwr_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1201,6 +1330,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1209,7 +1341,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_cortex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_cortex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_cortex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_cortex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1241,6 +1373,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1249,7 +1384,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_fdcan.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_fdcan.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_fdcan.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_fdcan.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1281,6 +1416,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1289,7 +1427,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_i2c.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_i2c.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1321,6 +1459,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1329,7 +1470,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_i2c_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_i2c_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1361,6 +1502,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1369,7 +1513,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_uart.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_uart.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_uart.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_uart.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1401,6 +1545,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1409,7 +1556,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_uart_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_uart_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_uart_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_uart_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1441,6 +1588,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1449,7 +1599,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_tim.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_tim.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1481,6 +1631,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1489,7 +1642,7 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_tim_ex.o -MD) F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_tim_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
@ -1521,6 +1674,138 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pcd.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Include\core_cm4.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x625333C8)
I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x625333C6)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x625333C6)
I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C)
I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x625333C6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd_ex.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_hal_pcd_ex.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Include\core_cm4.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x625333C8)
I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x625333C6)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x625333C6)
I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C)
I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x625333C6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h)(0x66690E8D)
F (../Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_usb.c)(0x66690E8D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -D__MICROLIB -gdwarf-4 -O3 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc -I ../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32G4xx/Include -I ../Drivers/CMSIS/Include -I ../FOC_Related/CONTROL -I ../FOC_Related/AS5600 -I ../FOC_Related/FOC -I ../FOC_Related/LOWPASS_FILTER -I ../FOC_Related/PID -I ../FOC_Related/ABZ -I ../FOC_Related/HALL -I./RTE/_STM32G474RETx_Demo_Blink -ID:/Software/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -ID:/Software/Arm/Packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -D__UVISION_VERSION="537" -D_RTE_ -DSTM32G474xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32G474xx -o stm32g474retx_demo_blink/stm32g4xx_ll_usb.o -MD)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h)(0x66690E8C)
I (..\Drivers\CMSIS\Include\core_cm4.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x625333C8)
I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x66690E75)
I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x66690E75)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x625333C6)
I (D:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x625333C6)
I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C)
I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x625333C6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)
@ -1540,7 +1825,7 @@ I (D:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x625333C6)
I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75) I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x66690E75)
I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C) I (..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h)(0x66690E8C)
I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66814B76) I (..\Core\Inc\stm32g4xx_hal_conf.h)(0x66B07AF6)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x66690E8C)
@ -1561,6 +1846,9 @@ I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h)(0x66690E8D)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h)(0x66690E8C)
I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D) I (..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h)(0x66690E8D)

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/abz.o: ..\FOC_Related\ABZ\ABZ.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/adc.o: ..\Core\Src\adc.c ..\Core\Inc\adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/as5600.o: ..\FOC_Related\AS5600\AS5600.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/dma.o: ..\Core\Src\dma.c ..\Core\Inc\dma.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/fdcan.o: ..\Core\Src\fdcan.c ..\Core\Inc\fdcan.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/foc.o: ..\FOC_Related\FOC\FOC.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/gpio.o: ..\Core\Src\gpio.c ..\Core\Inc\gpio.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/i2c.o: ..\Core\Src\i2c.c ..\Core\Inc\i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -34,6 +34,9 @@ stm32g474retx_demo_blink/lowpass_filter.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/main.o: ..\Core\Src\main.c ..\Core\Inc\main.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \
@ -40,8 +43,9 @@ stm32g474retx_demo_blink/main.o: ..\Core\Src\main.c ..\Core\Inc\main.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h \
..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h ..\Core\Inc\adc.h \ ..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h ..\Core\Inc\adc.h \
..\Core\Inc\dma.h ..\Core\Inc\fdcan.h ..\Core\Inc\i2c.h \ ..\Core\Inc\dma.h ..\Core\Inc\fdcan.h ..\Core\Inc\i2c.h \
..\Core\Inc\usart.h ..\Core\Inc\tim.h ..\Core\Inc\gpio.h \ ..\Core\Inc\usart.h ..\Core\Inc\tim.h ..\Core\Inc\usb.h \
..\FOC_Related\FOC\foc.h ..\FOC_Related\AS5600\as5600.h \ ..\Core\Inc\gpio.h ..\FOC_Related\FOC\foc.h \
..\FOC_Related\AS5600\as5600.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
..\FOC_Related\ABZ\ABZ.h ..\FOC_Related\ABZ\ABZ.h

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_adc.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_adc_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_cortex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_dma.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_dma_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_exti.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_fdcan.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_flash.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_flash_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_flash_ramfunc.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_gpio.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_i2c.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_i2c_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_msp.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -0,0 +1,44 @@
stm32g474retx_demo_blink/stm32g4xx_hal_pcd.o: \
..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pcd.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \
..\Core\Inc\stm32g4xx_hal_conf.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h \
..\Drivers\CMSIS\Include\core_cm4.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
..\Drivers\CMSIS\Include\cmsis_version.h \
..\Drivers\CMSIS\Include\cmsis_compiler.h \
..\Drivers\CMSIS\Include\cmsis_armclang.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \
..\Drivers\CMSIS\Include\mpu_armv7.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h

Binary file not shown.

View File

@ -0,0 +1,44 @@
stm32g474retx_demo_blink/stm32g4xx_hal_pcd_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pcd_ex.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \
..\Core\Inc\stm32g4xx_hal_conf.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h \
..\Drivers\CMSIS\Include\core_cm4.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
..\Drivers\CMSIS\Include\cmsis_version.h \
..\Drivers\CMSIS\Include\cmsis_compiler.h \
..\Drivers\CMSIS\Include\cmsis_armclang.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \
..\Drivers\CMSIS\Include\mpu_armv7.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_pwr.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_pwr_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_rcc.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_rcc_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_tim.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_tim_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_uart.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/stm32g4xx_hal_uart_ex.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/stm32g4xx_it.o: ..\Core\Src\stm32g4xx_it.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -0,0 +1,44 @@
stm32g474retx_demo_blink/stm32g4xx_ll_usb.o: \
..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_ll_usb.c \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \
..\Core\Inc\stm32g4xx_hal_conf.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h \
..\Drivers\CMSIS\Include\core_cm4.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
..\Drivers\CMSIS\Include\cmsis_version.h \
..\Drivers\CMSIS\Include\cmsis_compiler.h \
..\Drivers\CMSIS\Include\cmsis_armclang.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \
..\Drivers\CMSIS\Include\mpu_armv7.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h

Binary file not shown.

View File

@ -33,6 +33,9 @@ stm32g474retx_demo_blink/system_stm32g4xx.o: \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/tim.o: ..\Core\Src\tim.c ..\Core\Inc\tim.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -32,6 +32,9 @@ stm32g474retx_demo_blink/usart.o: ..\Core\Src\usart.c ..\Core\Inc\usart.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \ ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \

View File

@ -0,0 +1,44 @@
stm32g474retx_demo_blink/usb.o: ..\Core\Src\usb.c ..\Core\Inc\usb.h \
..\Core\Inc\main.h ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \
..\Core\Inc\stm32g4xx_hal_conf.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g474xx.h \
..\Drivers\CMSIS\Include\core_cm4.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
..\Drivers\CMSIS\Include\cmsis_version.h \
..\Drivers\CMSIS\Include\cmsis_compiler.h \
..\Drivers\CMSIS\Include\cmsis_armclang.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \
..\Drivers\CMSIS\Include\mpu_armv7.h \
..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_adc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_adc_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_fdcan.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_i2c_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_tim_ex.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \
..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h \
..\FOC_Related\LOWPASS_FILTER\LowPass_Filter.h ..\Core\Inc\adc.h

Binary file not shown.

View File

@ -1,15 +0,0 @@
# ninja log v6
3 149 7437717732688044 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir 659dcb057e6677a5
312 458 7437717735778046 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update a5715626eeb43326
3 149 7437717732688044 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir 659dcb057e6677a5
149 311 7437717734298039 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download 5894830ab43e9bb8
458 600 7437717737198054 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch 33ad302ad833c822
149 311 7437717734298039 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download 5894830ab43e9bb8
458 600 7437717737198054 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch 33ad302ad833c822
312 458 7437717735778046 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update a5715626eeb43326
600 6411 7437717795314478 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure cdc06ecaf99d34d8
600 6411 7437717795314478 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure cdc06ecaf99d34d8
6411 6568 7437717795354480 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database 5b5a00d9ecf56563
6411 6568 7437717795354480 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database 5b5a00d9ecf56563
4 295 7438239709319900 STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database 5b5a00d9ecf56563
4 295 7438239709319900 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database 5b5a00d9ecf56563

View File

@ -1,5 +0,0 @@
# ninja log v6
4 78 7437717796104484 CMakeFiles/database e7952e0db4a47d17
4 78 7437717796104484 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/database e7952e0db4a47d17
25 137 7438239710799901 CMakeFiles/database e7952e0db4a47d17
25 137 7438239710799901 C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/database e7952e0db4a47d17

View File

@ -1,340 +0,0 @@
# This is the CMakeCache file.
# For build in directory: c:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1
# It was generated by CMake: D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
//Path to a program.
CMAKE_AR:FILEPATH=d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armar.exe
//Flags used by the ASM compiler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=--target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
//Path to a program.
CMAKE_LINKER:FILEPATH=d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armlink.exe
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.ninja.build.ninja/1.12.0/ninja.exe
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=CMAKE_NM-NOTFOUND
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/fromelf.exe
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=CMAKE_OBJDUMP-NOTFOUND
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
//Path to a program.
CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=CMAKE_STRIP-NOTFOUND
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//No help, variable specified on the command line.
CMSIS_COMPILER_ROOT:UNINITIALIZED=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.open.cmsis.pack.cmsis.toolbox/2.5.0/etc
//No help, variable specified on the command line.
CMSIS_PACK_ROOT:UNINITIALIZED=C:/Users/Michael_Chemic/AppData/Local/arm/packs
//No help, variable specified on the command line.
SOLUTION_ROOT:UNINITIALIZED=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM
//Value Computed by CMake
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink_BINARY_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1
//Value Computed by CMake
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink_SOURCE_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=28
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=4
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/ctest.exe
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake-gui.exe
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//noop for ranlib
CMAKE_RANLIB:INTERNAL=:
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1

View File

@ -1,22 +0,0 @@
set(CMAKE_ASM_COMPILER "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin//armclang.exe")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armar.exe")
set(CMAKE_ASM_COMPILER_AR "")
set(CMAKE_RANLIB ":")
set(CMAKE_ASM_COMPILER_RANLIB "")
set(CMAKE_LINKER "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armlink.exe")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "ARMClang")
set(CMAKE_ASM_COMPILER_VERSION "")
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)
set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED )

View File

@ -1,74 +0,0 @@
set(CMAKE_C_COMPILER "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin//armclang.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "ARMClang")
set(CMAKE_C_COMPILER_VERSION "6.22.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "6220000")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armar.exe")
set(CMAKE_C_COMPILER_AR "")
set(CMAKE_RANLIB ":")
set(CMAKE_C_COMPILER_RANLIB "")
set(CMAKE_LINKER "d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/armlink.exe")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_C_COMPILER_ENV_VAR "CC")
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "ELF")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_SYSTEM "Generic")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -1,880 +0,0 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(__clang__) && defined(__cray__)
# define COMPILER_ID "CrayClang"
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TASKING__)
# define COMPILER_ID "Tasking"
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
#elif defined(__ORANGEC__)
# define COMPILER_ID "OrangeC"
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#elif defined(__TASKING__)
# if defined(__CTC__) || defined(__CPTC__)
# define ARCHITECTURE_ID "TriCore"
# elif defined(__CMCS__)
# define ARCHITECTURE_ID "MCS"
# elif defined(__CARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__CARC__)
# define ARCHITECTURE_ID "ARC"
# elif defined(__C51__)
# define ARCHITECTURE_ID "8051"
# elif defined(__CPCP__)
# define ARCHITECTURE_ID "PCP"
# else
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__) && !defined(__clang__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_VERSION "90"
# else
# define C_VERSION
# endif
#elif __STDC_VERSION__ > 201710L
# define C_VERSION "23"
#elif __STDC_VERSION__ >= 201710L
# define C_VERSION "17"
#elif __STDC_VERSION__ >= 201000L
# define C_VERSION "11"
#elif __STDC_VERSION__ >= 199901L
# define C_VERSION "99"
#else
# define C_VERSION "90"
#endif
const char* info_language_standard_default =
"INFO" ":" "standard_default[" C_VERSION "]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
#endif

View File

@ -1,177 +0,0 @@
---
events:
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:228 (message)"
- "CMakeLists.txt:19 (project)"
message: |
The target system is: Generic - -
The host system is: Windows - 10.0.19045 - AMD64
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:1168 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake:131 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "CMakeLists.txt:19 (project)"
message: |
Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)":
Product: Keil MDK Community (non-commercial free of charge)
Component: Arm Compiler for Embedded 6.22
Tool: armclang [5ee92100]
Target: unspecified-arm-none-unspecified
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:1168 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake:131 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "CMakeLists.txt:19 (project)"
message: |
Checking whether the ASM compiler is AppleClang using "--version" did not match "(Apple (clang|LLVM) version)":
Product: Keil MDK Community (non-commercial free of charge)
Component: Arm Compiler for Embedded 6.22
Tool: armclang [5ee92100]
Target: unspecified-arm-none-unspecified
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:1168 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake:131 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "CMakeLists.txt:19 (project)"
message: |
Checking whether the ASM compiler is Clang using "--version" did not match "(clang version)":
Product: Keil MDK Community (non-commercial free of charge)
Component: Arm Compiler for Embedded 6.22
Tool: armclang [5ee92100]
Target: unspecified-arm-none-unspecified
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:1155 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake:131 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)"
- "CMakeLists.txt:19 (project)"
message: |
Checking whether the ASM compiler is ARMClang using "--version" matched "armclang":
Product: Keil MDK Community (non-commercial free of charge)
Component: Arm Compiler for Embedded 6.22
Tool: armclang [5ee92100]
Target: unspecified-arm-none-unspecified
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "CMakeLists.txt:19 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: d:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin//armclang.exe
Build flags: --target=arm-arm-none-eabi;-mcpu=Cortex-M4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard
Id flags: -c;--target=arm-arm-none-eabi
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o"
The C compiler identification is ARMClang, found in:
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/3.28.4/CompilerIdC/CMakeCCompilerId.o
-
kind: "try_compile-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:19 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
source: "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/CMakeScratch/TryCompile-6mtcwo"
binary: "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/CMakeScratch/TryCompile-6mtcwo"
cmakeVariables:
CMAKE_CXX_COMPILER_TARGET: "arm-arm-none-eabi"
CMAKE_C_COMPILER_TARGET: "arm-arm-none-eabi"
CMAKE_C_FLAGS: "--target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard"
CMAKE_C_FLAGS_DEBUG: "-g"
CMAKE_EXE_LINKER_FLAGS: ""
CMAKE_MODULE_PATH: "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.open.cmsis.pack.cmsis.toolbox/2.5.0/etc/CMakeASM"
buildResult:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
Change Dir: 'C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/CMakeScratch/TryCompile-6mtcwo'
Run Build Command(s): D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.ninja.build.ninja/1.12.0/ninja.exe -v cmTC_42ef6
[1/2] d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -v -MD -MT CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -MF CMakeFiles\\cmTC_42ef6.dir\\CMakeCCompilerABI.o.d -o CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -c D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeCCompilerABI.c
Product: Keil MDK Community (non-commercial free of charge)
Component: Arm Compiler for Embedded 6.22
Tool: armclang [5ee92100]
Target: arm-arm-none-eabi
(in-process)
"D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\bin\\\\armclang.exe" -cc1 -triple thumbv7em-arm-none-eabihf -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=none -menable-no-infs -menable-no-nans -fmath-errno -fno-signed-zeros -fdenormal-fp-math=preserve-sign,preserve-sign -ffp-contract=on -fno-rounding-math -ffinite-math-only -mconstructor-aliases -target-cpu cortex-m4 -target-feature -vfp2 -target-feature +vfp2sp -target-feature -vfp3 -target-feature -vfp3d16 -target-feature +vfp3d16sp -target-feature -vfp3sp -target-feature +fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature +vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature -fp64 -target-feature -d32 -target-feature -neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs -mfloat-abi hard -debugger-tuning=gdb -fforce-dwarf-frame "-fdebug-compilation-dir=C:\\\\Users\\\\Michael_Chemic\\\\Desktop\\\\STM32G4-DRV8301-FOC\\\\MDK-ARM\\\\tmp\\\\1\\\\CMakeFiles\\\\CMakeScratch\\\\TryCompile-6mtcwo" -v -ffunction-sections -fdata-sections "-fcoverage-compilation-dir=C:\\\\Users\\\\Michael_Chemic\\\\Desktop\\\\STM32G4-DRV8301-FOC\\\\MDK-ARM\\\\tmp\\\\1\\\\CMakeFiles\\\\CMakeScratch\\\\TryCompile-6mtcwo" -resource-dir "D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\lib\\\\clang\\\\19" -dependency-file "CMakeFiles\\\\cmTC_42ef6.dir\\\\CMakeCCompilerABI.o.d" -MT CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -sys-header-deps -internal-isystem "D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\bin\\\\..\\\\include" -nobuiltininc -ferror-limit 19 -fvisibility=hidden -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fsuppress-licensing -aggressive-jump-threading -o CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -x c D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeCCompilerABI.c
Arm Compiler for Embedded 6.22 -cc1 default target aarch64-arm-none-eabi
#include "..." search starts here:
#include <...> search starts here:
D:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\..\\include\x0d
End of search list.\x0d
[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\armar.exe --create -cr libcmTC_42ef6.a CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o && cd ."
exitCode: 0
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:19 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
add: [D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/../include]
end of search list found
collapse include dir [D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/bin/../include] ==> [D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include]
implicit include dirs: [D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include]
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)"
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:19 (project)"
message: |
Parsed C implicit link information:
link line regex: [^( *|.*[/\\])(armlink\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
ignore line: [Change Dir: 'C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/CMakeScratch/TryCompile-6mtcwo']
ignore line: []
ignore line: [Run Build Command(s): D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.ninja.build.ninja/1.12.0/ninja.exe -v cmTC_42ef6]
ignore line: [[1/2] d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -v -MD -MT CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -MF CMakeFiles\\cmTC_42ef6.dir\\CMakeCCompilerABI.o.d -o CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -c D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeCCompilerABI.c]
ignore line: [Product: Keil MDK Community (non-commercial free of charge)]
ignore line: [Component: Arm Compiler for Embedded 6.22]
ignore line: [Tool: armclang [5ee92100]]
ignore line: []
ignore line: [Target: arm-arm-none-eabi]
ignore line: [ (in-process)]
ignore line: [ "D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\bin\\\\armclang.exe" -cc1 -triple thumbv7em-arm-none-eabihf -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=none -menable-no-infs -menable-no-nans -fmath-errno -fno-signed-zeros -fdenormal-fp-math=preserve-sign preserve-sign -ffp-contract=on -fno-rounding-math -ffinite-math-only -mconstructor-aliases -target-cpu cortex-m4 -target-feature -vfp2 -target-feature +vfp2sp -target-feature -vfp3 -target-feature -vfp3d16 -target-feature +vfp3d16sp -target-feature -vfp3sp -target-feature +fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature +vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature -fp64 -target-feature -d32 -target-feature -neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs -mfloat-abi hard -debugger-tuning=gdb -fforce-dwarf-frame "-fdebug-compilation-dir=C:\\\\Users\\\\Michael_Chemic\\\\Desktop\\\\STM32G4-DRV8301-FOC\\\\MDK-ARM\\\\tmp\\\\1\\\\CMakeFiles\\\\CMakeScratch\\\\TryCompile-6mtcwo" -v -ffunction-sections -fdata-sections "-fcoverage-compilation-dir=C:\\\\Users\\\\Michael_Chemic\\\\Desktop\\\\STM32G4-DRV8301-FOC\\\\MDK-ARM\\\\tmp\\\\1\\\\CMakeFiles\\\\CMakeScratch\\\\TryCompile-6mtcwo" -resource-dir "D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\lib\\\\clang\\\\19" -dependency-file "CMakeFiles\\\\cmTC_42ef6.dir\\\\CMakeCCompilerABI.o.d" -MT CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -sys-header-deps -internal-isystem "D:\\\\Software\\\\Cadence\\\\SPB_Data\\\\.vcpkg\\\\artifacts\\\\2139c4c6\\\\compilers.arm.armclang\\\\6.22.0\\\\bin\\\\..\\\\include" -nobuiltininc -ferror-limit 19 -fvisibility=hidden -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fsuppress-licensing -aggressive-jump-threading -o CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o -x c D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeCCompilerABI.c]
ignore line: [Arm Compiler for Embedded 6.22 -cc1 default target aarch64-arm-none-eabi]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ D:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\..\\include\x0d]
ignore line: [End of search list.\x0d]
ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\armar.exe --create -cr libcmTC_42ef6.a CMakeFiles/cmTC_42ef6.dir/CMakeCCompilerABI.o && cd ."]
ignore line: []
ignore line: []
implicit libs: []
implicit objs: []
implicit dirs: []
implicit fwks: []
...

View File

@ -1,8 +0,0 @@
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/database.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/Group_Application_MDK-ARM.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/Group_Application_User_Core.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/Group_Drivers_STM32G4xx_HAL_Driver.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/Group_Drivers_CMSIS.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/edit_cache.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/CMakeFiles/rebuild_cache.dir

View File

@ -1 +0,0 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -1,96 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.28
# This file contains all the rules used to get the outputs files
# built from the input files.
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for linking C executable.
rule C_EXECUTABLE_LINKER__STM32G474RETx_Demo_Blink.2bSTM32G474RETxDemoBlink_
command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && d:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\compilers.arm.armclang\6.22.0\bin\armlink.exe $LINK_FLAGS --via=$RSP_FILE -o $TARGET_FILE --list=$TARGET_FILE.map && $POST_BUILD"
description = Linking C executable $TARGET_FILE
rspfile = $RSP_FILE
rspfile_content = $in $LINK_PATH $LINK_LIBRARIES
restat = $RESTAT
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER__Group_Application_MDK-ARM_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}d:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\compilers.arm.armclang\6.22.0\bin\\armclang.exe $DEFINES $INCLUDES $FLAGS -c -o $out $in
description = Building ASM object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__Group_Application_User_Core_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}d:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\compilers.arm.armclang\6.22.0\bin\\armclang.exe --target=arm-arm-none-eabi $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__Group_Drivers_STM32G4xx_HAL_Driver_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}d:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\compilers.arm.armclang\6.22.0\bin\\armclang.exe --target=arm-arm-none-eabi $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__Group_Drivers_CMSIS_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}d:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\compilers.arm.armclang\6.22.0\bin\\armclang.exe --target=arm-arm-none-eabi $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.kitware.cmake\3.28.4\bin\cmake.exe --regenerate-during-build -SC:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\tmp\STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -BC:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\tmp\1
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.ninja.build.ninja\1.12.0\ninja.exe $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.ninja.build.ninja\1.12.0\ninja.exe -t targets
description = All primary targets available:

File diff suppressed because one or more lines are too long

View File

@ -1,49 +0,0 @@
# Install script for directory: C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "CMAKE_OBJDUMP-NOTFOUND")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -1,254 +0,0 @@
[
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -g -O1 -Wa,armasm,--pd,\"STM32G474xx SETA 1\" -Wa,armasm,--pd,\"_RTE_ SETA 1\" -masm=auto -c -o CMakeFiles\\Group_Application_MDK-ARM.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\MDK-ARM\\startup_stm32g474xx.o C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\MDK-ARM\\startup_stm32g474xx.s",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\MDK-ARM\\startup_stm32g474xx.s",
"output": "CMakeFiles\\Group_Application_MDK-ARM.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\MDK-ARM\\startup_stm32g474xx.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\AS5600\\AS5600.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\AS5600\\AS5600.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\AS5600\\AS5600.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\AS5600\\AS5600.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\CONTROL\\control.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\CONTROL\\control.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\CONTROL\\control.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\CONTROL\\control.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\FOC\\FOC.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\FOC\\FOC.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\FOC\\FOC.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\FOC\\FOC.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\LOWPASS_FILTER\\LowPass_Filter.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\LOWPASS_FILTER\\LowPass_Filter.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\LOWPASS_FILTER\\LowPass_Filter.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\LOWPASS_FILTER\\LowPass_Filter.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\PID\\pid.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\PID\\pid.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\PID\\pid.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\PID\\pid.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\HALL\\HALL.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\HALL\\HALL.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\HALL\\HALL.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\HALL\\HALL.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\ABZ\\ABZ.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\ABZ\\ABZ.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\ABZ\\ABZ.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\FOC_Related\\ABZ\\ABZ.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\main.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\main.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\main.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\main.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\gpio.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\gpio.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\gpio.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\gpio.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\adc.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\adc.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\adc.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\adc.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\dma.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\dma.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\dma.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\dma.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\fdcan.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\fdcan.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\fdcan.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\fdcan.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\i2c.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\i2c.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\i2c.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\i2c.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\usart.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\usart.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\usart.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\usart.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\tim.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\tim.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\tim.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\tim.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_it.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_it.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_it.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_it.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_hal_msp.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_hal_msp.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_hal_msp.c",
"output": "CMakeFiles\\Group_Application_User_Core.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\stm32g4xx_hal_msp.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_adc_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_ll_adc.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_ll_adc.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_ll_adc.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_ll_adc.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_rcc_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ramfunc.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ramfunc.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ramfunc.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_flash_ramfunc.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_gpio.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_gpio.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_gpio.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_gpio.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_exti.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_exti.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_exti.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_exti.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_dma_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_pwr_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_cortex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_cortex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_cortex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_cortex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_fdcan.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_fdcan.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_fdcan.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_fdcan.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_i2c_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_uart_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim_ex.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim_ex.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim_ex.c",
"output": "CMakeFiles\\Group_Drivers_STM32G4xx_HAL_Driver.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Drivers\\STM32G4xx_HAL_Driver\\Src\\stm32g4xx_hal_tim_ex.o"
},
{
"directory": "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/1",
"command": "d:\\Software\\Cadence\\SPB_Data\\.vcpkg\\artifacts\\2139c4c6\\compilers.arm.armclang\\6.22.0\\bin\\\\armclang.exe --target=arm-arm-none-eabi -DSTM32G474xx -DUSE_HAL_DRIVER -D_RTE_ -D__MICROLIB -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Core/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Device/ST/STM32G4xx/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../Drivers/CMSIS/Include -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/CONTROL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/AS5600 -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/FOC -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/LOWPASS_FILTER -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/PID -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/ABZ -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/../FOC_Related/HALL -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/RTE/_STM32G474RETxDemoBlink -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/Michael_Chemic/AppData/Local/arm/packs/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include -isystem D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/compilers.arm.armclang/6.22.0/include --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -mcpu=Cortex-M4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --target=arm-arm-none-eabi -c -mlittle-endian -std=c99 -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -g -O1 -o CMakeFiles\\Group_Drivers_CMSIS.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\system_stm32g4xx.o -c C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\system_stm32g4xx.c",
"file": "C:\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\system_stm32g4xx.c",
"output": "CMakeFiles\\Group_Drivers_CMSIS.dir\\C_\\Users\\Michael_Chemic\\Desktop\\STM32G4-DRV8301-FOC\\Core\\Src\\system_stm32g4xx.o"
}
]

View File

@ -1,120 +0,0 @@
# This is the CMakeCache file.
# For build in directory: c:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp
# It was generated by CMake: D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/STM32G474RETx_Demo_Blink
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.ninja.build.ninja/1.12.0/ninja.exe
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=STM32G474RETx_Demo_Blink
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
STM32G474RETx_Demo_Blink_BINARY_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp
//Value Computed by CMake
STM32G474RETx_Demo_Blink_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
STM32G474RETx_Demo_Blink_SOURCE_DIR:STATIC=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp
########################
# INTERNAL cache entries
########################
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=28
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=4
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/ctest.exe
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/bin/cmake-gui.exe
//Whether to issue deprecation errors for macros and functions.
CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//Suppress errors that are meant for the author of the CMakeLists.txt
// files.
CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE
//Suppress Warnings that are meant for the author of the CMakeLists.txt
// files.
CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Whether to issue warnings for deprecated functionality.
CMAKE_WARN_DEPRECATED:INTERNAL=FALSE

View File

@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_SYSTEM "Windows-10.0.19045")
set(CMAKE_SYSTEM_NAME "Windows")
set(CMAKE_SYSTEM_VERSION "10.0.19045")
set(CMAKE_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -1,11 +0,0 @@
---
events:
-
kind: "message-v1"
backtrace:
- "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.kitware.cmake/3.28.4/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)"
- "CMakeLists.txt:4 (project)"
message: |
The system is: Windows - 10.0.19045 - AMD64
...

View File

@ -1,37 +0,0 @@
{
"sources" :
[
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule"
}
],
"target" :
{
"labels" :
[
"STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
],
"name" : "STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build"
}
}

View File

@ -1,11 +0,0 @@
# Target labels
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Source files and their labels
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule

View File

@ -1,34 +0,0 @@
{
"sources" :
[
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule"
}
],
"target" :
{
"labels" :
[
"STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
],
"name" : "STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure"
}
}

View File

@ -1,10 +0,0 @@
# Target labels
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Source files and their labels
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule

View File

@ -1,37 +0,0 @@
{
"sources" :
[
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule"
}
],
"target" :
{
"labels" :
[
"STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
],
"name" : "STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database"
}
}

View File

@ -1,11 +0,0 @@
# Target labels
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Source files and their labels
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule

View File

@ -1,46 +0,0 @@
{
"sources" :
[
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-complete.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-install.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-test.rule"
},
{
"file" : "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule"
}
],
"target" :
{
"labels" :
[
"STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
],
"name" : "STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
}
}

View File

@ -1,14 +0,0 @@
# Target labels
STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
# Source files and their labels
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-complete.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-download.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-install.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-mkdir.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-patch.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-test.rule
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink/src/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-stamp/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-update.rule

View File

@ -1,6 +0,0 @@
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-build.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-configure.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink-database.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/edit_cache.dir
C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM/tmp/CMakeFiles/rebuild_cache.dir

View File

@ -1 +0,0 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -1,45 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.28
# This file contains all the rules used to get the outputs files
# built from the input files.
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: STM32G474RETx_Demo_Blink
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.kitware.cmake\3.28.4\bin\cmake.exe --regenerate-during-build -SC:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\tmp -BC:\Users\Michael_Chemic\Desktop\STM32G4-DRV8301-FOC\MDK-ARM\tmp
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.ninja.build.ninja\1.12.0\ninja.exe $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = D:\Software\Cadence\SPB_Data\.vcpkg\artifacts\2139c4c6\tools.ninja.build.ninja\1.12.0\ninja.exe -t targets
description = All primary targets available:

View File

@ -1,71 +0,0 @@
cmake_minimum_required(VERSION 3.22)
include(ExternalProject)
project("STM32G474RETx_Demo_Blink" NONE)
# Roots
set(CMSIS_PACK_ROOT "C:/Users/Michael_Chemic/AppData/Local/arm/packs")
cmake_path(ABSOLUTE_PATH CMSIS_PACK_ROOT NORMALIZE OUTPUT_VARIABLE CMSIS_PACK_ROOT)
set(CMSIS_COMPILER_ROOT "D:/Software/Cadence/SPB_Data/.vcpkg/artifacts/2139c4c6/tools.open.cmsis.pack.cmsis.toolbox/2.5.0/etc")
cmake_path(ABSOLUTE_PATH CMSIS_COMPILER_ROOT NORMALIZE OUTPUT_VARIABLE CMSIS_COMPILER_ROOT)
set(SOLUTION_ROOT "C:/Users/Michael_Chemic/Desktop/STM32G4-DRV8301-FOC/MDK-ARM")
cmake_path(ABSOLUTE_PATH SOLUTION_ROOT NORMALIZE OUTPUT_VARIABLE SOLUTION_ROOT)
# Context specific lists
set(CONTEXTS
"STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
)
list(LENGTH CONTEXTS CONTEXTS_LENGTH)
math(EXPR CONTEXTS_LENGTH "${CONTEXTS_LENGTH}-1")
set(DIRS
"${CMAKE_CURRENT_SOURCE_DIR}/STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink"
)
set(OUTPUTS_1
"${SOLUTION_ROOT}/out/STM32G474RETx_Demo_Blink/STM32G474RETxDemoBlink/STM32G474RETx_Demo_Blink.axf"
)
set(ARGS
"-DSOLUTION_ROOT=${SOLUTION_ROOT}"
"-DCMSIS_PACK_ROOT=${CMSIS_PACK_ROOT}"
"-DCMSIS_COMPILER_ROOT=${CMSIS_COMPILER_ROOT}"
)
# Iterate over contexts
foreach(INDEX RANGE ${CONTEXTS_LENGTH})
math(EXPR N "${INDEX}+1")
list(GET CONTEXTS ${INDEX} CONTEXT)
list(GET DIRS ${INDEX} DIR)
# Create external project, set configure and build steps
ExternalProject_Add(${CONTEXT}
PREFIX ${DIR}
SOURCE_DIR ${DIR}
BINARY_DIR ${N}
INSTALL_COMMAND ""
TEST_COMMAND ""
CONFIGURE_COMMAND ${CMAKE_COMMAND} -G Ninja -S <SOURCE_DIR> -B <BINARY_DIR> ${ARGS}
BUILD_COMMAND ${CMAKE_COMMAND} -E echo "Building CMake target '${CONTEXT}'"
COMMAND ${CMAKE_COMMAND} --build <BINARY_DIR>
BUILD_ALWAYS TRUE
BUILD_BYPRODUCTS ${OUTPUTS_${N}}
LOG_CONFIGURE ON
)
ExternalProject_Add_StepTargets(${CONTEXT} build configure)
# Debug
message(VERBOSE "Configure Context: ${CMAKE_COMMAND} -G Ninja -S ${DIR} -B ${N}")
# Database generation step
ExternalProject_Add_Step(${CONTEXT} database
COMMAND ${CMAKE_COMMAND} --build <BINARY_DIR> --target database
EXCLUDE_FROM_MAIN TRUE
ALWAYS TRUE
DEPENDEES configure
)
ExternalProject_Add_StepTargets(${CONTEXT} database)
endforeach()

View File

@ -1,138 +0,0 @@
cmake_minimum_required(VERSION 3.22)
set(CONTEXT STM32G474RETx_Demo_Blink+STM32G474RETxDemoBlink)
set(TARGET ${CONTEXT})
set(OUT_DIR "${SOLUTION_ROOT}/out/STM32G474RETx_Demo_Blink/STM32G474RETxDemoBlink")
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(LD_SCRIPT "${SOLUTION_ROOT}/STM32G474RETx_Demo_Blink_STM32G474RETxDemoBlink.sct")
set(LD_SCRIPT_PP ${LD_SCRIPT})
# Processor Options
set(CPU Cortex-M4)
set(FPU SP_FPU)
set(BYTE_ORDER Little-endian)
# Toolchain config map
include("toolchain.cmake")
# Setup project
project(${CONTEXT} LANGUAGES ASM C)
# Compilation database
add_custom_target(database COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_BINARY_DIR}/compile_commands.json" "${OUT_DIR}")
set(CMAKE_C_STANDARD_INCLUDE_DIRECTORIES ${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES})
# Setup context
add_executable(${CONTEXT})
set_target_properties(${CONTEXT} PROPERTIES PREFIX "" SUFFIX ".axf" OUTPUT_NAME "STM32G474RETx_Demo_Blink")
set_target_properties(${CONTEXT} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${OUT_DIR})
add_library(${CONTEXT}_GLOBAL INTERFACE)
# Includes
target_include_directories(${CONTEXT} PUBLIC
$<$<COMPILE_LANGUAGE:C,CXX>:
${SOLUTION_ROOT}/../Core/Inc
${SOLUTION_ROOT}/../Drivers/STM32G4xx_HAL_Driver/Inc
${SOLUTION_ROOT}/../Drivers/STM32G4xx_HAL_Driver/Inc/Legacy
${SOLUTION_ROOT}/../Drivers/CMSIS/Device/ST/STM32G4xx/Include
${SOLUTION_ROOT}/../Drivers/CMSIS/Include
${SOLUTION_ROOT}/../FOC_Related/CONTROL
${SOLUTION_ROOT}/../FOC_Related/AS5600
${SOLUTION_ROOT}/../FOC_Related/FOC
${SOLUTION_ROOT}/../FOC_Related/LOWPASS_FILTER
${SOLUTION_ROOT}/../FOC_Related/PID
${SOLUTION_ROOT}/../FOC_Related/ABZ
${SOLUTION_ROOT}/../FOC_Related/HALL
>
${SOLUTION_ROOT}/RTE/_STM32G474RETxDemoBlink
${CMSIS_PACK_ROOT}/ARM/CMSIS/5.9.0/CMSIS/Core/Include
${CMSIS_PACK_ROOT}/Keil/STM32G4xx_DFP/1.6.0/Drivers/CMSIS/Device/ST/STM32G4xx/Include
)
# Defines
target_compile_definitions(${CONTEXT} PUBLIC
$<$<COMPILE_LANGUAGE:C,CXX>:
USE_HAL_DRIVER
STM32G474xx
__MICROLIB
STM32G474xx
_RTE_
>
)
# Compile options
target_compile_options(${CONTEXT} PUBLIC
$<$<COMPILE_LANGUAGE:ASM>:
"SHELL:${ASM_CPU}"
"SHELL:${ASM_FLAGS}"
"SHELL:${ASM_BYTE_ORDER}"
>
$<$<COMPILE_LANGUAGE:C>:
"SHELL:${CC_CPU}"
"SHELL:${CC_FLAGS}"
"SHELL:${CC_BYTE_ORDER}"
"SHELL:-std=c99"
"SHELL:-fno-rtti"
"SHELL:-funsigned-char"
"SHELL:-fshort-enums"
"SHELL:-fshort-wchar"
"SHELL:-ffunction-sections"
"SHELL:-Wno-packed"
"SHELL:-Wno-missing-variable-declarations"
"SHELL:-Wno-missing-prototypes"
"SHELL:-Wno-missing-noreturn"
"SHELL:-Wno-sign-conversion"
"SHELL:-Wno-nonportable-include-path"
"SHELL:-Wno-reserved-id-macro"
"SHELL:-Wno-unused-macros"
"SHELL:-Wno-documentation-unknown-command"
"SHELL:-Wno-documentation"
"SHELL:-Wno-license-management"
"SHELL:-Wno-parentheses-equality"
>
)
# Compile Options Abstractions
add_library(${CONTEXT}_ABSTRACTIONS INTERFACE)
cbuild_set_options_flags(ASM "debug" "on" "" "" ASM_OPTIONS_FLAGS_${CONTEXT})
cbuild_set_options_flags(CC "debug" "on" "" "" CC_OPTIONS_FLAGS_${CONTEXT})
target_compile_options(${CONTEXT}_ABSTRACTIONS INTERFACE
$<$<COMPILE_LANGUAGE:ASM>:
"SHELL:${ASM_OPTIONS_FLAGS_${CONTEXT}}"
>
$<$<COMPILE_LANGUAGE:C>:
"SHELL:${CC_OPTIONS_FLAGS_${CONTEXT}}"
>
)
# Add groups and components
include("groups.cmake")
include("components.cmake")
target_link_libraries(${CONTEXT} PUBLIC
Group_Application_MDK-ARM
Group_Application_User_Core
Group_Drivers_STM32G4xx_HAL_Driver
Group_Drivers_CMSIS
ARM_CMSIS_CORE_5_6_0
)
# Linker options
target_link_options(${CONTEXT} PUBLIC
"SHELL:${LD_CPU}"
"SHELL:${_LS}\"${LD_SCRIPT_PP}\""
"SHELL:--library_type=microlib"
"SHELL:--map"
"SHELL:--load_addr_map_info"
"SHELL:--xref"
"SHELL:--callgraph"
"SHELL:--symbols"
"SHELL:--info sizes"
"SHELL:--info totals"
"SHELL:--info unused"
"SHELL:--info veneers"
"SHELL:--strict"
"SHELL:--summary_stderr"
"SHELL:--info summarysizes"
)
set_target_properties(${CONTEXT} PROPERTIES LINK_DEPENDS ${LD_SCRIPT})

View File

@ -1,11 +0,0 @@
# components.cmake
# component ARM::CMSIS:CORE@5.6.0
add_library(ARM_CMSIS_CORE_5_6_0 INTERFACE)
target_include_directories(ARM_CMSIS_CORE_5_6_0 INTERFACE
$<TARGET_PROPERTY:${CONTEXT},INTERFACE_INCLUDE_DIRECTORIES>
${CMSIS_PACK_ROOT}/ARM/CMSIS/5.9.0/CMSIS/Core/Include
)
target_compile_definitions(ARM_CMSIS_CORE_5_6_0 INTERFACE
$<TARGET_PROPERTY:${CONTEXT},INTERFACE_COMPILE_DEFINITIONS>
)

Some files were not shown because too many files have changed in this diff Show More