This commit is contained in:
BoomPC 2024-05-10 02:39:53 +08:00
parent fd8c109b9a
commit d531b7cc09
116 changed files with 417 additions and 16489 deletions

View File

@ -6,10 +6,10 @@
#include "Angle.h"
#include "InteriorADC.h"
//#include "Data/Current/InteriorADC/InteriorADC.h"
#include "Controller/Controller.h"
float CurrA, CurrB, CurrC;
float Current_Temp, V_Temp;
//float CurrA, CurrB, CurrC;
//float Current_Temp, V_Temp;
float32_t NowAngle;
void APP_Init() {
@ -82,7 +82,14 @@ float moving_average_filtre(float xn) {
return yn;
}
static float Current_Temp1, ii;
//float Current_Temp1, ii=0.0f, iii=0.0f;
//#define PWM_FREQUENCY 24000
//#define CURRENT_MEASURE_HZ PWM_FREQUENCY
//#define CURRENT_MEASURE_PERIOD (float) (1.0f / (float) CURRENT_MEASURE_HZ)
//
//#define TIMER0_CLK_MHz 168
//#define PWM_PERIOD_CYCLES (uint16_t)((TIMER0_CLK_MHz * (uint32_t) 1000000u / ((uint32_t) (PWM_FREQUENCY))) & 0xFFFE)
//#define HALF_PWM_PERIOD_CYCLES (uint16_t)(PWM_PERIOD_CYCLES / 2U)
void APP_Main() {
// TIM1->CCR1 = 0;
@ -90,11 +97,21 @@ void APP_Main() {
// TIM1->CCR3 = 100;
// TIM1->CCR4 = 10;
ii += 0.001f;
Current_Temp = ((110.0 - 30) / (*TS_CAL2 - *TS_CAL1) * (int16_t) (adc1_RegularBuf[1] * 3.3 / 3.0 - *TS_CAL1)) + 30;
Current_Temp1 = moving_average_filtre(Current_Temp * sinf(ii));
SendCurrent_Vofa(Current_Temp * sinf(ii), Current_Temp1, 0);
// ii += 0.000001f;
//// if (ii == 0.1f) { ii = 0.1f-0.00001f; }
// iii += 0.03f;
// if (iii >= 360.0f) { iii = 0.0f; }
// Current_Temp = ((110.0 - 30) / (*TS_CAL2 - *TS_CAL1) * (int16_t) (adc1_RegularBuf[1] * 3.3 / 3.0 - *TS_CAL1)) + 30;
// Current_Temp1 = moving_average_filtre(Current_Temp * sinf(ii));
// SendCurrent_Vofa(Current_Temp * sinf(ii), Current_Temp1, 0);
// Generate(0, 0.02f, iii);
// SendCurrent_Vofa(FOC.dtc_a, iii,(uint16_t) (FOC.dtc_a * (float) HALF_PWM_PERIOD_CYCLES));
// TIM1->CCR1 = (uint16_t) (FOC.dtc_a * (float) HALF_PWM_PERIOD_CYCLES);
// TIM1->CCR2 = (uint16_t) (FOC.dtc_b * (float) HALF_PWM_PERIOD_CYCLES);
// TIM1->CCR3 = (uint16_t) (FOC.dtc_c * (float) HALF_PWM_PERIOD_CYCLES);
// SendCurrent_Vofa(FOC.dtc_a, ii,0);
// usb_printf("%f\r\n", NowAngle);
@ -102,10 +119,16 @@ void APP_Main() {
// usb_printf("CoreTemp:%d,%d, %.2f\r\n", adc1_RegularBuf[0], adc1_RegularBuf[1], Current_Temp);
// usb_printf("PhaseCurrent:%d, %d, %d\r\n", ADC1->JDR1 - 2040, ADC2->JDR1 - 2024, ADC1->JDR2 - 2024);
// usb_printf("PhaseVoltage:%d, %d, %d\r\n", ADC2->JDR2, ADC2->JDR3, ADC2->JDR4);
// SendCurrent_Vofa(FOC.dtc_a, FOC.dtc_b,FOC.dtc_c);
// SendCurrent_Vofa(ADC1->JDR1, FOC.dtc_a, 0 );
// CurrA = ia/4096*3.3/0.005f/7.33333;
SendCurrent_Vofa((ADC1->JDR1)/4096.0f*3.3f/0.005f/7.33333f, ADC2->JDR1, ADC1->JDR2);
// usb_printf("PhaseVoltage:%d\r\n", (ADC1->JDR1-2048.0f)/4096.0f*3.3f/0.005f/7.33333f);
// HAL_Delay(10);
HAL_Delay(10);
}
@ -114,8 +137,3 @@ void APP_Main() {
// if (HAL_OK == HAL_ADC_PollForConversion(&hadc1, 50)) {
// ADC_VAL1 = HAL_ADC_GetValue(&hadc1);
// }
void APP_Task() {
// Current_Temp = 1.0f;
// Current_Temp = (1.43 - adc1_RegularBuf[0] * 3.3 / 4096) * 1000 / 4.35 + 25;
}

View File

@ -22,8 +22,8 @@
#include "gpio.h"
#include "usbd_cdc_if.h"
//#include "arm_math.h"
#include "Utils/arm_math.h"
#include "arm_math.h"
#include "Communication.h"

41
APP/APP_Task.c Normal file
View File

@ -0,0 +1,41 @@
//
// Created by ZK on 24-5-10.
//
#include "APP_Task.h"
#include "APP_Main.h"
#include "Angle.h"
#include "InteriorADC.h"
#include "Controller/Controller.h"
float CurrA, CurrB, CurrC;
float Current_Temp, V_Temp;
//float32_t NowAngle;
float Current_Temp1, ii = 0.0f, iii = 0.0f;
#define PWM_FREQUENCY 24000
#define CURRENT_MEASURE_HZ PWM_FREQUENCY
#define CURRENT_MEASURE_PERIOD (float) (1.0f / (float) CURRENT_MEASURE_HZ)
#define TIMER0_CLK_MHz 168
#define PWM_PERIOD_CYCLES (uint16_t)((TIMER0_CLK_MHz * (uint32_t) 1000000u / ((uint32_t) (PWM_FREQUENCY))) & 0xFFFE)
#define HALF_PWM_PERIOD_CYCLES (uint16_t)(PWM_PERIOD_CYCLES / 2U)
void High_Frequency_Task() {
ii += 0.000001f;
// if (ii == 0.1f) { ii = 0.1f-0.00001f; }
iii += 0.1f;
if (iii >= 360.0f) { iii = 0.0f; }
Generate(0, 0.02f, iii);
// SendCurrent_Vofa(FOC.dtc_a, iii, (uint16_t) (FOC.dtc_a * (float) HALF_PWM_PERIOD_CYCLES));
TIM1->CCR1 = (uint16_t) (FOC.dtc_a * (float) HALF_PWM_PERIOD_CYCLES);
TIM1->CCR2 = (uint16_t) (FOC.dtc_b * (float) HALF_PWM_PERIOD_CYCLES);
TIM1->CCR3 = (uint16_t) (FOC.dtc_c * (float) HALF_PWM_PERIOD_CYCLES);
// SendCurrent_Vofa((ADC1->JDR1)/4096.0f*3.3f/0.005f/7.33333f, 0, 0);
}

10
APP/APP_Task.h Normal file
View File

@ -0,0 +1,10 @@
//
// Created by ZK on 24-5-10.
//
#ifndef BOOOOMFOC_STSPIN32G4_EVB_APP_TASK_H
#define BOOOOMFOC_STSPIN32G4_EVB_APP_TASK_H
void High_Frequency_Task();
#endif //BOOOOMFOC_STSPIN32G4_EVB_APP_TASK_H

View File

@ -1,6 +1,29 @@
//
// Created by ZK on 2023/3/14.
//
//#include "main.h"
#include <stdbool.h>
#include "Controller.h"
#include "SVPWM/SVPWM.h"
tFOC FOC;
float uAlpha1;
float uBeta1;
bool Generate(float ud, float uq, float Theta) {
inversePark(ud, uq, Theta, &uAlpha1, &uBeta1);
if (0 == SVPWM(uAlpha1, uBeta1, &FOC.dtc_a, &FOC.dtc_b, &FOC.dtc_c)) {
// set_a_duty((uint16_t)(Foc.dtc_a * (float) HALF_PWM_PERIOD_CYCLES));
// set_b_duty((uint16_t)(Foc.dtc_b * (float) HALF_PWM_PERIOD_CYCLES));
// set_c_duty((uint16_t)(Foc.dtc_c * (float) HALF_PWM_PERIOD_CYCLES));
// TIM1->CCR1 = (uint16_t) FOC.dtc_a;
// TIM1->CCR2 = (uint16_t) FOC.dtc_b;
// TIM1->CCR3 = (uint16_t) FOC.dtc_c;
}
return FOC.dtc_a;
}

View File

@ -5,4 +5,22 @@
#ifndef BOOOOMFOC_STSPIN32G4_EVB_CONTROLLER_H
#define BOOOOMFOC_STSPIN32G4_EVB_CONTROLLER_H
typedef struct sFOC
{
bool is_armed;
float v_bus, v_bus_filt, i_a, i_b, i_c;
float i_q, i_q_filt, i_d, i_d_filt, i_bus, i_bus_filt, power_filt;
float dtc_a, dtc_b, dtc_c;
float current_ctrl_p_gain, current_ctrl_i_gain;
float current_ctrl_integral_d, current_ctrl_integral_q;
} tFOC;
extern tFOC FOC;
extern bool Generate(float ud, float uq, float Theta);
#endif //BOOOOMFOC_STSPIN32G4_EVB_CONTROLLER_H

View File

@ -5,33 +5,180 @@
#include "SVPWM.h"
inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
#define SVM 1
extern uint16_t cycleNum;
#define SQRT3 1.732050808f
#define LIMIT (float32_t)(0.9f / SQRT3)
#define LIMIT_UDC 16.0f
#define TS 3400
#define SQRT3_MULT_TS (float32_t)((float32_t)TS * SQRT3)
uint8_t sectionMap[7] = {0, 2, 6, 1, 4, 3, 5};
float32_t uAlpha, uBeta;
float32_t ud, uq;
uint16_t channel1, channel2, channel3,udc=12;
float uAlpha, uBeta;
float32_t iAlpha, iBeta;
float32_t id, iq;
inline void inversePark(float ud, float uq, float Theta, float *uAlpha, float *uBeta) {
float s = sinf(Theta / 57.2958f);
float c = cosf(Theta / 57.2958f);
*uAlpha = ud * c - uq * s;
*uBeta = ud * s + uq * c;
}
#ifdef false
inline int SVPWM(float uAlpha, float uBeta, float *tA, float *tB, float *tC) {
float U1, U2, U3;
uint8_t a, b, c, n = 0;
U1 = uBeta;
U2 = (SQRT3 * uAlpha - uBeta) / 2;
U3 = (-SQRT3 * uAlpha - uBeta) / 2;
if (U1 > 0)
a = 1;
else
a = 0;
if (U2 > 0)
b = 1;
else
b = 0;
if (U3 > 0)
c = 1;
else
c = 0;
n = (c << 2) + (b << 1) + a;
switch (sectionMap[n])
{
case 0:
{
channel1 = TS / 2;
channel2 = TS / 2;
channel3 = TS / 2;
}
break;
case 1:
{
int16_t t4 = SQRT3 * TS * U2 / udc;
int16_t t6 = SQRT3 * TS * U1 / udc;
int16_t t0 = (TS - t4 - t6) / 2;
channel1 = t4 + t6 + t0;
channel2 = t6 + t0;
channel3 = t0;
}
break;
case 2:
{
int16_t t2 = -SQRT3 * TS * U2 / udc;
int16_t t6 = -SQRT3 * TS * U3 / udc;
int16_t t0 = (TS - t2 - t6) / 2;
channel1 = t6 + t0;
channel2 = t2 + t6 + t0;
channel3 = t0;
}
break;
case 3:
{
int16_t t2 = SQRT3 * TS * U1 / udc;
int16_t t3 = SQRT3 * TS * U3 / udc;
int16_t t0 = (TS - t2 - t3) / 2;
channel1 = t0;
channel2 = t2 + t3 + t0;
channel3 = t3 + t0;
}
break;
case 4:
{
int16_t t1 = -SQRT3 * TS * U1 / udc;
int16_t t3 = -SQRT3 * TS * U2 / udc;
int16_t t0 = (TS - t1 - t3) / 2;
channel1 = t0;
channel2 = t3 + t0;
channel3 = t1 + t3 + t0;
}
break;
case 5:
{
int16_t t1 = SQRT3 * TS * U3 / udc;
int16_t t5 = SQRT3 * TS * U2 / udc;
int16_t t0 = (TS - t1 - t5) / 2;
channel1 = t5 + t0;
channel2 = t0;
channel3 = t1 + t5 + t0;
}
break;
case 6:
{
int16_t t4 = -SQRT3 * TS * U3 / udc;
int16_t t5 = -SQRT3 * TS * U1 / udc;
int16_t t0 = (TS - t4 - t5) / 2;
channel1 = t4 + t5 + t0;
channel2 = t0;
channel3 = t5 + t0;
}
break;
default:
break;
}
*tA = channel1;
*tB = channel2;
*tC = channel3;
return 0;
}
#else
inline int SVPWM(float uAlpha, float uBeta, float *tA, float *tB, float *tC) {
int Sextant;
if (beta >= 0.0f) {
if (alpha >= 0.0f) {
if (uBeta >= 0.0f) {
if (uAlpha >= 0.0f) {
//quadrant I
if (ONE_BY_SQRT3 * beta > alpha)
if (ONE_BY_SQRT3 * uBeta > uAlpha)
Sextant = 2; //sextant v2-v3
else
Sextant = 1; //sextant v1-v2
} else {
//quadrant II
if (-ONE_BY_SQRT3 * beta > alpha)
if (-ONE_BY_SQRT3 * uBeta > uAlpha)
Sextant = 3; //sextant v3-v4
else
Sextant = 2; //sextant v2-v3
}
} else {
if (alpha >= 0.0f) {
if (uAlpha >= 0.0f) {
//quadrant IV
if (-ONE_BY_SQRT3 * beta > alpha)
if (-ONE_BY_SQRT3 * uBeta > uAlpha)
Sextant = 5; //sextant v5-v6
else
Sextant = 6; //sextant v6-v1
} else {
//quadrant III
if (ONE_BY_SQRT3 * beta > alpha)
if (ONE_BY_SQRT3 * uBeta > uAlpha)
Sextant = 4; //sextant v4-v5
else
Sextant = 5; //sextant v5-v6
@ -42,8 +189,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v1-v2
case 1: {
// Vector on-times
float t1 = alpha - ONE_BY_SQRT3 * beta;
float t2 = TWO_BY_SQRT3 * beta;
float t1 = uAlpha - ONE_BY_SQRT3 * uBeta;
float t2 = TWO_BY_SQRT3 * uBeta;
// PWM timings
*tA = (1.0f - t1 - t2) * 0.5f;
@ -55,8 +202,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v2-v3
case 2: {
// Vector on-times
float t2 = alpha + ONE_BY_SQRT3 * beta;
float t3 = -alpha + ONE_BY_SQRT3 * beta;
float t2 = uAlpha + ONE_BY_SQRT3 * uBeta;
float t3 = -uAlpha + ONE_BY_SQRT3 * uBeta;
// PWM timings
*tB = (1.0f - t2 - t3) * 0.5f;
@ -68,8 +215,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v3-v4
case 3: {
// Vector on-times
float t3 = TWO_BY_SQRT3 * beta;
float t4 = -alpha - ONE_BY_SQRT3 * beta;
float t3 = TWO_BY_SQRT3 * uBeta;
float t4 = -uAlpha - ONE_BY_SQRT3 * uBeta;
// PWM timings
*tB = (1.0f - t3 - t4) * 0.5f;
@ -81,8 +228,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v4-v5
case 4: {
// Vector on-times
float t4 = -alpha + ONE_BY_SQRT3 * beta;
float t5 = -TWO_BY_SQRT3 * beta;
float t4 = -uAlpha + ONE_BY_SQRT3 * uBeta;
float t5 = -TWO_BY_SQRT3 * uBeta;
// PWM timings
*tC = (1.0f - t4 - t5) * 0.5f;
@ -94,8 +241,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v5-v6
case 5: {
// Vector on-times
float t5 = -alpha - ONE_BY_SQRT3 * beta;
float t6 = alpha - ONE_BY_SQRT3 * beta;
float t5 = -uAlpha - ONE_BY_SQRT3 * uBeta;
float t6 = uAlpha - ONE_BY_SQRT3 * uBeta;
// PWM timings
*tC = (1.0f - t5 - t6) * 0.5f;
@ -107,8 +254,8 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
// sextant v6-v1
case 6: {
// Vector on-times
float t6 = -TWO_BY_SQRT3 * beta;
float t1 = alpha + ONE_BY_SQRT3 * beta;
float t6 = -TWO_BY_SQRT3 * uBeta;
float t1 = uAlpha + ONE_BY_SQRT3 * uBeta;
// PWM timings
*tA = (1.0f - t6 - t1) * 0.5f;
@ -119,10 +266,13 @@ inline int svpwm(float alpha, float beta, float *tA, float *tB, float *tC) {
}
// if any of the results becomes NaN, result_valid will evaluate to false
int result_valid =
*tA >= 0.0f && *tA <= 1.0f
&& *tB >= 0.0f && *tB <= 1.0f
&& *tC >= 0.0f && *tC <= 1.0f;
int result_valid = *tA >= 0.0f && *tA <= 1.0f && *tB >= 0.0f && *tB <= 1.0f && *tC >= 0.0f && *tC <= 1.0f;
return result_valid ? 0 : -1;
}
// TIM1->CCR1 = channelA;
// TIM1->CCR2 = channelB;
// TIM1->CCR3 = channelC;
}
#endif

View File

@ -5,10 +5,28 @@
#ifndef BOOOOMFOC_STSPIN32G4_EVB_SVPWM_H
#define BOOOOMFOC_STSPIN32G4_EVB_SVPWM_H
#define M_PI (3.14159265358f)
#define M_2PI (6.28318530716f)
#define ONE_BY_SQRT3 (0.57735026919f)
#define TWO_BY_SQRT3 (2.0f * 0.57735026919f)
#define SQRT3_BY_2 (0.86602540378f)
#include "arm_math.h"
#define M_PI (3.14159265358f)
#define M_2PI (6.28318530716f)
#define ONE_BY_SQRT3 (0.57735026919f)
#define TWO_BY_SQRT3 (2.0f * 0.57735026919f)
#define SQRT3_BY_2 (0.86602540378f)
#define SQ(x) ((x) * (x))
#define ABS(x) ((x) > 0 ? (x) : -(x))
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define CLAMP(x, lower, upper) (MIN(upper, MAX(x, lower)))
#define FLOAT_EQU(floatA, floatB) ((ABS((floatA) - (floatB))) < 0.000001f)
//extern inline void clarke_transform(float Ia, float Ib, float Ic, float *Ialpha, float *Ibeta);
//
//extern inline void park_transform(float Ialpha, float Ibeta, float Theta, float *Id, float *Iq);
extern void inversePark(float ud, float uq, float Theta, float *uAlpha, float *uBeta);
extern int SVPWM(float uAlpha, float uBeta, float *tA, float *tB, float *tC);
#endif //BOOOOMFOC_STSPIN32G4_EVB_SVPWM_H

View File

@ -13,6 +13,7 @@ bool InteriorADC_Init(void) {
HAL_Delay(100);
HAL_ADCEx_InjectedStart(&hadc1);
__HAL_ADC_ENABLE_IT(&hadc1, ADC_IT_JEOC);
__HAL_ADC_DISABLE_IT(&hadc1, ADC_IT_JEOS);//关闭ADC1的中断避免ADC1_2_IRQHandler触发两次
HAL_ADCEx_InjectedStart(&hadc2);
__HAL_ADC_ENABLE_IT(&hadc2, ADC_IT_JEOC);

View File

@ -1,3 +1,4 @@
#include "stm32g4xx.h"
/******************************************************************************
* @file arm_math.h
* @brief Public header file for CMSIS DSP Library

View File

@ -51,12 +51,15 @@ endif ()
include_directories(
APP
BoooomCTL
BoooomCTL/Controller/PreDrive
BoooomCTL/Communication
BoooomCTL/Data
BoooomCTL/Data/Angle
BoooomCTL/Data/Current/InteriorADC
BoooomCTL/Utils
BoooomDRV
Core/Inc USB_Device/App

View File

@ -51,12 +51,15 @@ endif ()
include_directories(
APP
BoooomCTL
BoooomCTL/Controller/PreDrive
BoooomCTL/Communication
BoooomCTL/Data
BoooomCTL/Data/Angle
BoooomCTL/Data/Current/InteriorADC
BoooomCTL/Utils
BoooomDRV
Core/Inc USB_Device/App

View File

@ -22,6 +22,7 @@
#include "stm32g4xx_it.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "APP_Task.h"
/* USER CODE END Includes */
/* Private typedef -----------------------------------------------------------*/
@ -70,130 +71,116 @@ extern TIM_HandleTypeDef htim1;
/**
* @brief This function handles Non maskable interrupt.
*/
void NMI_Handler(void)
{
/* USER CODE BEGIN NonMaskableInt_IRQn 0 */
void NMI_Handler(void) {
/* USER CODE BEGIN NonMaskableInt_IRQn 0 */
/* USER CODE END NonMaskableInt_IRQn 0 */
HAL_RCC_NMI_IRQHandler();
/* USER CODE BEGIN NonMaskableInt_IRQn 1 */
while (1)
{
}
/* USER CODE END NonMaskableInt_IRQn 1 */
/* USER CODE END NonMaskableInt_IRQn 0 */
HAL_RCC_NMI_IRQHandler();
/* USER CODE BEGIN NonMaskableInt_IRQn 1 */
while (1) {
}
/* USER CODE END NonMaskableInt_IRQn 1 */
}
/**
* @brief This function handles Hard fault interrupt.
*/
void HardFault_Handler(void)
{
/* USER CODE BEGIN HardFault_IRQn 0 */
void HardFault_Handler(void) {
/* USER CODE BEGIN HardFault_IRQn 0 */
/* USER CODE END HardFault_IRQn 0 */
while (1)
{
/* USER CODE BEGIN W1_HardFault_IRQn 0 */
/* USER CODE END W1_HardFault_IRQn 0 */
}
/* USER CODE END HardFault_IRQn 0 */
while (1) {
/* USER CODE BEGIN W1_HardFault_IRQn 0 */
/* USER CODE END W1_HardFault_IRQn 0 */
}
}
/**
* @brief This function handles Memory management fault.
*/
void MemManage_Handler(void)
{
/* USER CODE BEGIN MemoryManagement_IRQn 0 */
void MemManage_Handler(void) {
/* USER CODE BEGIN MemoryManagement_IRQn 0 */
/* USER CODE END MemoryManagement_IRQn 0 */
while (1)
{
/* USER CODE BEGIN W1_MemoryManagement_IRQn 0 */
/* USER CODE END W1_MemoryManagement_IRQn 0 */
}
/* USER CODE END MemoryManagement_IRQn 0 */
while (1) {
/* USER CODE BEGIN W1_MemoryManagement_IRQn 0 */
/* USER CODE END W1_MemoryManagement_IRQn 0 */
}
}
/**
* @brief This function handles Prefetch fault, memory access fault.
*/
void BusFault_Handler(void)
{
/* USER CODE BEGIN BusFault_IRQn 0 */
void BusFault_Handler(void) {
/* USER CODE BEGIN BusFault_IRQn 0 */
/* USER CODE END BusFault_IRQn 0 */
while (1)
{
/* USER CODE BEGIN W1_BusFault_IRQn 0 */
/* USER CODE END W1_BusFault_IRQn 0 */
}
/* USER CODE END BusFault_IRQn 0 */
while (1) {
/* USER CODE BEGIN W1_BusFault_IRQn 0 */
/* USER CODE END W1_BusFault_IRQn 0 */
}
}
/**
* @brief This function handles Undefined instruction or illegal state.
*/
void UsageFault_Handler(void)
{
/* USER CODE BEGIN UsageFault_IRQn 0 */
void UsageFault_Handler(void) {
/* USER CODE BEGIN UsageFault_IRQn 0 */
/* USER CODE END UsageFault_IRQn 0 */
while (1)
{
/* USER CODE BEGIN W1_UsageFault_IRQn 0 */
/* USER CODE END W1_UsageFault_IRQn 0 */
}
/* USER CODE END UsageFault_IRQn 0 */
while (1) {
/* USER CODE BEGIN W1_UsageFault_IRQn 0 */
/* USER CODE END W1_UsageFault_IRQn 0 */
}
}
/**
* @brief This function handles System service call via SWI instruction.
*/
void SVC_Handler(void)
{
/* USER CODE BEGIN SVCall_IRQn 0 */
void SVC_Handler(void) {
/* USER CODE BEGIN SVCall_IRQn 0 */
/* USER CODE END SVCall_IRQn 0 */
/* USER CODE BEGIN SVCall_IRQn 1 */
/* USER CODE END SVCall_IRQn 0 */
/* USER CODE BEGIN SVCall_IRQn 1 */
/* USER CODE END SVCall_IRQn 1 */
/* USER CODE END SVCall_IRQn 1 */
}
/**
* @brief This function handles Debug monitor.
*/
void DebugMon_Handler(void)
{
/* USER CODE BEGIN DebugMonitor_IRQn 0 */
void DebugMon_Handler(void) {
/* USER CODE BEGIN DebugMonitor_IRQn 0 */
/* USER CODE END DebugMonitor_IRQn 0 */
/* USER CODE BEGIN DebugMonitor_IRQn 1 */
/* USER CODE END DebugMonitor_IRQn 0 */
/* USER CODE BEGIN DebugMonitor_IRQn 1 */
/* USER CODE END DebugMonitor_IRQn 1 */
/* USER CODE END DebugMonitor_IRQn 1 */
}
/**
* @brief This function handles Pendable request for system service.
*/
void PendSV_Handler(void)
{
/* USER CODE BEGIN PendSV_IRQn 0 */
void PendSV_Handler(void) {
/* USER CODE BEGIN PendSV_IRQn 0 */
/* USER CODE END PendSV_IRQn 0 */
/* USER CODE BEGIN PendSV_IRQn 1 */
/* USER CODE END PendSV_IRQn 0 */
/* USER CODE BEGIN PendSV_IRQn 1 */
/* USER CODE END PendSV_IRQn 1 */
/* USER CODE END PendSV_IRQn 1 */
}
/**
* @brief This function handles System tick timer.
*/
void SysTick_Handler(void)
{
/* USER CODE BEGIN SysTick_IRQn 0 */
void SysTick_Handler(void) {
/* USER CODE BEGIN SysTick_IRQn 0 */
/* USER CODE END SysTick_IRQn 0 */
HAL_IncTick();
/* USER CODE BEGIN SysTick_IRQn 1 */
/* USER CODE END SysTick_IRQn 0 */
HAL_IncTick();
/* USER CODE BEGIN SysTick_IRQn 1 */
/* USER CODE END SysTick_IRQn 1 */
/* USER CODE END SysTick_IRQn 1 */
}
/******************************************************************************/
@ -206,58 +193,54 @@ void SysTick_Handler(void)
/**
* @brief This function handles DMA1 channel1 global interrupt.
*/
void DMA1_Channel1_IRQHandler(void)
{
/* USER CODE BEGIN DMA1_Channel1_IRQn 0 */
void DMA1_Channel1_IRQHandler(void) {
/* USER CODE BEGIN DMA1_Channel1_IRQn 0 */
/* USER CODE END DMA1_Channel1_IRQn 0 */
HAL_DMA_IRQHandler(&hdma_adc1);
/* USER CODE BEGIN DMA1_Channel1_IRQn 1 */
/* USER CODE END DMA1_Channel1_IRQn 0 */
HAL_DMA_IRQHandler(&hdma_adc1);
/* USER CODE BEGIN DMA1_Channel1_IRQn 1 */
/* USER CODE END DMA1_Channel1_IRQn 1 */
/* USER CODE END DMA1_Channel1_IRQn 1 */
}
/**
* @brief This function handles ADC1 and ADC2 global interrupt.
*/
void ADC1_2_IRQHandler(void)
{
/* USER CODE BEGIN ADC1_2_IRQn 0 */
void ADC1_2_IRQHandler(void) {
/* USER CODE BEGIN ADC1_2_IRQn 0 */
/* USER CODE END ADC1_2_IRQn 0 */
HAL_ADC_IRQHandler(&hadc1);
HAL_ADC_IRQHandler(&hadc2);
/* USER CODE BEGIN ADC1_2_IRQn 1 */
/* USER CODE END ADC1_2_IRQn 1 */
/* USER CODE END ADC1_2_IRQn 0 */
HAL_ADC_IRQHandler(&hadc1);
HAL_ADC_IRQHandler(&hadc2);
/* USER CODE BEGIN ADC1_2_IRQn 1 */
High_Frequency_Task();
/* USER CODE END ADC1_2_IRQn 1 */
}
/**
* @brief This function handles USB low priority interrupt remap.
*/
void USB_LP_IRQHandler(void)
{
/* USER CODE BEGIN USB_LP_IRQn 0 */
void USB_LP_IRQHandler(void) {
/* USER CODE BEGIN USB_LP_IRQn 0 */
/* USER CODE END USB_LP_IRQn 0 */
HAL_PCD_IRQHandler(&hpcd_USB_FS);
/* USER CODE BEGIN USB_LP_IRQn 1 */
/* USER CODE END USB_LP_IRQn 0 */
HAL_PCD_IRQHandler(&hpcd_USB_FS);
/* USER CODE BEGIN USB_LP_IRQn 1 */
/* USER CODE END USB_LP_IRQn 1 */
/* USER CODE END USB_LP_IRQn 1 */
}
/**
* @brief This function handles TIM1 update interrupt and TIM16 global interrupt.
*/
void TIM1_UP_TIM16_IRQHandler(void)
{
/* USER CODE BEGIN TIM1_UP_TIM16_IRQn 0 */
void TIM1_UP_TIM16_IRQHandler(void) {
/* USER CODE BEGIN TIM1_UP_TIM16_IRQn 0 */
/* USER CODE END TIM1_UP_TIM16_IRQn 0 */
HAL_TIM_IRQHandler(&htim1);
/* USER CODE BEGIN TIM1_UP_TIM16_IRQn 1 */
/* USER CODE END TIM1_UP_TIM16_IRQn 0 */
HAL_TIM_IRQHandler(&htim1);
/* USER CODE BEGIN TIM1_UP_TIM16_IRQn 1 */
/* USER CODE END TIM1_UP_TIM16_IRQn 1 */
/* USER CODE END TIM1_UP_TIM16_IRQn 1 */
}
/* USER CODE BEGIN 1 */

View File

@ -1,140 +0,0 @@
{
"inputs" :
[
{
"path" : "CMakeLists.txt"
},
{
"isGenerated" : true,
"path" : "cmake-build-debug/CMakeFiles/3.28.1/CMakeSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake"
},
{
"isGenerated" : true,
"path" : "cmake-build-debug/CMakeFiles/3.28.1/CMakeCCompiler.cmake"
},
{
"isGenerated" : true,
"path" : "cmake-build-debug/CMakeFiles/3.28.1/CMakeCXXCompiler.cmake"
},
{
"isGenerated" : true,
"path" : "cmake-build-debug/CMakeFiles/3.28.1/CMakeASMCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeGenericSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Platform/Generic.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeCInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU-C.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Platform/Generic.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeCXXInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Platform/Generic.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/CMakeASMInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU-ASM.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28/Modules/Compiler/GNU.cmake"
}
],
"kind" : "cmakeFiles",
"paths" :
{
"build" : "E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug",
"source" : "E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB"
},
"version" :
{
"major" : 1,
"minor" : 0
}
}

View File

@ -1,60 +0,0 @@
{
"configurations" :
[
{
"directories" :
[
{
"build" : ".",
"jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
"minimumCMakeVersion" :
{
"string" : "3.24"
},
"projectIndex" : 0,
"source" : ".",
"targetIndexes" :
[
0
]
}
],
"name" : "Debug",
"projects" :
[
{
"directoryIndexes" :
[
0
],
"name" : "BoooomFOC_STSPIN32G4_EVB",
"targetIndexes" :
[
0
]
}
],
"targets" :
[
{
"directoryIndex" : 0,
"id" : "BoooomFOC_STSPIN32G4_EVB.elf::@6890427a1f51a3e7e1df",
"jsonFile" : "target-BoooomFOC_STSPIN32G4_EVB.elf-Debug-5184bd558520caf41aaa.json",
"name" : "BoooomFOC_STSPIN32G4_EVB.elf",
"projectIndex" : 0
}
]
}
],
"kind" : "codemodel",
"paths" :
{
"build" : "E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug",
"source" : "E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB"
},
"version" :
{
"major" : 2,
"minor" : 6
}
}

View File

@ -1,14 +0,0 @@
{
"backtraceGraph" :
{
"commands" : [],
"files" : [],
"nodes" : []
},
"installers" : [],
"paths" :
{
"build" : ".",
"source" : "."
}
}

View File

@ -1,108 +0,0 @@
{
"cmake" :
{
"generator" :
{
"multiConfig" : false,
"name" : "Ninja"
},
"paths" :
{
"cmake" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/cmake.exe",
"cpack" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/cpack.exe",
"ctest" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/ctest.exe",
"root" : "D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/share/cmake-3.28"
},
"version" :
{
"isDirty" : false,
"major" : 3,
"minor" : 28,
"patch" : 1,
"string" : "3.28.1",
"suffix" : ""
}
},
"objects" :
[
{
"jsonFile" : "codemodel-v2-f6329a173c29f9fcace8.json",
"kind" : "codemodel",
"version" :
{
"major" : 2,
"minor" : 6
}
},
{
"jsonFile" : "cache-v2-6db2a80c15b391d89c29.json",
"kind" : "cache",
"version" :
{
"major" : 2,
"minor" : 0
}
},
{
"jsonFile" : "cmakeFiles-v1-6f1c16102fa00c5131a2.json",
"kind" : "cmakeFiles",
"version" :
{
"major" : 1,
"minor" : 0
}
},
{
"jsonFile" : "toolchains-v1-e8363e9fffd930ac86da.json",
"kind" : "toolchains",
"version" :
{
"major" : 1,
"minor" : 0
}
}
],
"reply" :
{
"cache-v2" :
{
"jsonFile" : "cache-v2-6db2a80c15b391d89c29.json",
"kind" : "cache",
"version" :
{
"major" : 2,
"minor" : 0
}
},
"cmakeFiles-v1" :
{
"jsonFile" : "cmakeFiles-v1-6f1c16102fa00c5131a2.json",
"kind" : "cmakeFiles",
"version" :
{
"major" : 1,
"minor" : 0
}
},
"codemodel-v2" :
{
"jsonFile" : "codemodel-v2-f6329a173c29f9fcace8.json",
"kind" : "codemodel",
"version" :
{
"major" : 2,
"minor" : 6
}
},
"toolchains-v1" :
{
"jsonFile" : "toolchains-v1-e8363e9fffd930ac86da.json",
"kind" : "toolchains",
"version" :
{
"major" : 1,
"minor" : 0
}
}
}
}

View File

@ -1,94 +0,0 @@
{
"kind" : "toolchains",
"toolchains" :
[
{
"compiler" :
{
"id" : "GNU",
"implicit" : {},
"path" : "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
"version" : ""
},
"language" : "ASM",
"sourceFileExtensions" :
[
"s",
"S",
"asm"
]
},
{
"compiler" :
{
"id" : "GNU",
"implicit" :
{
"includeDirectories" :
[
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include"
],
"linkDirectories" : [],
"linkFrameworkDirectories" : [],
"linkLibraries" : []
},
"path" : "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
"version" : "10.3.1"
},
"language" : "C",
"sourceFileExtensions" :
[
"c",
"m"
]
},
{
"compiler" :
{
"id" : "GNU",
"implicit" :
{
"includeDirectories" :
[
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed",
"E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include"
],
"linkDirectories" : [],
"linkFrameworkDirectories" : [],
"linkLibraries" : []
},
"path" : "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe",
"version" : "10.3.1"
},
"language" : "CXX",
"sourceFileExtensions" :
[
"C",
"M",
"c++",
"cc",
"cpp",
"cxx",
"mm",
"mpp",
"CPP",
"ixx",
"cppm",
"ccm",
"cxxm",
"c++m"
]
}
],
"version" :
{
"major" : 1,
"minor" : 0
}
}

Binary file not shown.

View File

@ -1,134 +0,0 @@
# ninja log v5
420 707 7368082003929036 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_spi.c.obj 757239fdb7c16da8
412 623 7368082003065550 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc_ex.c.obj bcebd3bd10189c9b
358 550 7368082002072302 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_opamp_ex.c.obj db6c5b586c4fe2a9
234 429 7368082000798122 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal.c.obj ee5457abd09b1895
394 591 7368082002744160 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr_ex.c.obj 18c6c194dd3148ab
375 559 7368082002252301 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd_ex.c.obj 81123b9059de6495
128 305 7368081999631927 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/dma.c.obj c4de02bd99d8de13
5 143 7368091777003157 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
252 533 7368082001921621 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc_ex.c.obj c549bc75ebc73c8d
90 226 7368081998490917 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Temperature/Temperature.c.obj c3487e5a398cf000
215 420 7368082000571875 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/tim.c.obj 289b074b7ffb5745
145 341 7368081999822130 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/i2c.c.obj fd9f5c11b469a159
65 215 7368083978924551 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/USB_Device/App/usbd_cdc_if.c.obj ed197becf314dc1c
136 296 7368081999631927 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/gpio.c.obj 66ea7b44afa7cc59
183 385 7368082000062614 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/stm32g4xx_it.c.obj b0d1ff8150570fcc
121 323 7368081999711992 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/adc.c.obj 1787e4157214eb48
160 358 7368081999912139 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/opamp.c.obj 4a9c4298e26247e2
199 332 7368081999812135 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/sysmem.c.obj fea26c928495001e
168 366 7368081999982138 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/spi.c.obj e55424370fc50d8c
175 375 7368082000002140 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/stm32g4xx_hal_msp.c.obj a3d88f4dbe1c8c99
2 173 7368092399749869 build.ninja 729ae19c07fb8613
476 675 7368082003595158 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_usb.c.obj 518e02337c491b36
226 350 7368081999892139 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Startup/startup_stm32g431vbtx.s.obj 2594737bc55098
191 394 7368082000224781 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/syscalls.c.obj b9ad9a47c1c69d96
467 560 7368082002383274 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_adc.c.obj ad6316aee0483cf0
296 494 7368082001588781 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash.c.obj e08f3baef4d1c056
207 403 7368082000249992 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/system_stm32g4xx.c.obj da4b7119cad98db3
51 224 7368083979020180 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/main.c.obj 7cd9874a1228867c
261 438 7368082001089932 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_cortex.c.obj 58da78d9c7b90d7b
403 596 7368082002794153 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc.c.obj a48a9c6eb85b44e3
279 467 7368082001429941 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma_ex.c.obj de9745b11c5707fa
242 542 7368082002032277 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc.c.obj 81428dd7c578cf4b
270 476 7368082001440012 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma.c.obj 31678d15332b028a
350 559 7368082002082308 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_opamp.c.obj 5f49bb8611e7f821
288 484 7368082001473736 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_exti.c.obj 3d6a8c779034fe21
503 704 7368082003889045 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj a277ad163b748bcd
315 458 7368082001399938 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ramfunc.c.obj 94f9e2c02c9f8712
305 513 7368082001820036 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ex.c.obj ee67a0600ba251c
341 523 7368082001911034 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c_ex.c.obj c73892dd70e564c1
33 183 7368081997851733 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Controller/Controller.c.obj 717b318a369a8e43
323 503 7368082001749340 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_gpio.c.obj 3677f6c0f17fa2df
385 561 7368082002393286 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr.c.obj 7b693a0561f126be
98 234 7368081998585176 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Voltage/Voltage.c.obj 7c295c3cc3fc39c5
366 605 7368082002864156 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd.c.obj 1434c051fdf6d233
83 215 7368081998500914 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Data.c.obj 10f33156b86553eb
429 589 7368082002721321 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_spi_ex.c.obj c25786547647c6b3
513 703 7368082003889045 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj 84d2ab74ac181b86
494 691 7368082003758055 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj 946181092d1b0a33
484 688 7368082003718067 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj 3d945b059b42e836
550 731 7368082004159024 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/USB_Device/Target/usbd_conf.c.obj b3d31d5c002b4c7a
58 214 7368083978904544 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/USB_Device/App/usb_device.c.obj fc2b1d517a472d86
542 715 7368082003999023 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/USB_Device/App/usbd_desc.c.obj 5c6dda8e65433d46
458 728 7368082004139019 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c.obj 992703e21bf11de7
332 718 7368082004029025 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c.c.obj 3d675bb530606136
113 251 7368081998780976 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomDRV/Peripheral/SPI/SPI.c.obj c94a08c09ce14a69
438 811 7368082004954358 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim.c.obj 7518506ecd29566e
145 315 7368088193975732 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
12 175 7368081997638405 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Common/PID/PID.c.obj 533741e979a181c1
36 201 7368083978774069 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Angle/Angle.c.obj f59232d11c300699
47 191 7368081998063615 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Controller/SVPWM/SVPWM.c.obj ba9b960a2a45d087
60 199 7368081998154685 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Angle/MT6816/MT6816.c.obj 27e8a99f59236bdb
68 207 7368081998389287 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Current/Current.c.obj 510a39b0928a81a5
106 242 7368081998760379 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Parameter/Parameter.c.obj b4e93312df490e0e
14 179 7368083978548180 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Communication/Communication.c.obj 2cb1e319215d6ff0
22 185 7368083978608739 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Communication/Vofa/VOFA.c.obj 8e7a539cff7ee7aa
30 188 7368083978649219 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Controller/PreDrive/PreDrive.c.obj 3b2ec0d01ef13f18
6 149 7368090988675973 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Current/InteriorADC/InteriorADC.c.obj 545261d445602ecf
13 148 7368092901562721 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Current/InteriorADC/InteriorADC.c.obj 545261d445602ecf
5 154 7368092901623548 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
154 323 7368092902912049 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 135 7368093115532353 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
136 299 7368093116800228 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 144 7368094896302142 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
145 316 7368094897610069 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 144 7368097680103676 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/Core/Src/main.c.obj 7cd9874a1228867c
145 316 7368097681401049 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 149 7368098888179356 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
149 321 7368098889501734 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 141 7368099965734404 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
142 309 7368099967025565 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 149 7368101993978958 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
149 327 7368101995381679 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
12 149 7368102930285049 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/BoooomCTL/Data/Current/InteriorADC/InteriorADC.c.obj 545261d445602ecf
5 157 7368102930355061 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
157 327 7368102931640132 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 143 7368103177571934 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
143 316 7368103178893376 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 148 7368103453573519 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
148 327 7368103454929039 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 145 7368104252892617 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
146 320 7368104254223094 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 147 7368104412721297 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
147 322 7368104414065963 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 145 7368107820959967 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
145 319 7368107822280764 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 147 7368108252211614 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
147 318 7368108253521712 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 147 7368108390236566 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
147 319 7368108391532025 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 152 7368109685545420 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
152 318 7368109686805394 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 150 7368110455413610 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
151 325 7368110456764464 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 147 7368111260618873 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
147 319 7368111261931348 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 142 7368111612451263 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
143 582 7368111616444390 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 148 7368112100046031 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
148 322 7368112101375687 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 159 7368112405467876 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
160 334 7368112406829185 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 150 7368112722907221 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
150 337 7368112724344280 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 162 7368112901777534 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
163 338 7368112903118420 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 153 7368113208877244 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
154 334 7368113210254206 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 145 7368114107658574 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
146 317 7368114108994022 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
7 152 7368114422910862 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
153 322 7368114424202320 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 151 7368114580647909 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
151 332 7368114581998794 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 148 7368114876570544 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
148 354 7368114878185303 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 151 7368115670780790 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
152 343 7368115672189971 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 151 7368116223947711 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
152 326 7368116225293026 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
5 143 7368116449183910 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
143 309 7368116450453042 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c
6 150 7368116673256956 CMakeFiles/BoooomFOC_STSPIN32G4_EVB.elf.dir/APP/APP_Main.c.obj c270ed70b022daa7
150 336 7368116674620570 BoooomFOC_STSPIN32G4_EVB.elf 76ffda305bedf96c

View File

@ -1,654 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<CodeBlocks_project_file>
<FileVersion major="1" minor="6"/>
<Project>
<Option title="BoooomFOC_STSPIN32G4_EVB"/>
<Option makefile_is_custom="1"/>
<Option compiler="gcc"/>
<Option virtualFolders="CMake Files\;"/>
<Build>
<Target title="all">
<Option working_dir="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug"/>
<Option type="4"/>
<MakeCommands>
<Build command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 all"/>
<CompileFile command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="BoooomFOC_STSPIN32G4_EVB.elf">
<Option output="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/BoooomFOC_STSPIN32G4_EVB.elf" prefix_auto="0" extension_auto="0"/>
<Option working_dir="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug"/>
<Option object_output="./"/>
<Option type="1"/>
<Option compiler="gcc"/>
<Compiler>
<Add option="-DARM_MATH_CM4"/>
<Add option="-DARM_MATH_MATRIX_CHECK"/>
<Add option="-DARM_MATH_ROUNDING"/>
<Add option="-DDEBUG"/>
<Add option="-DUSE_HAL_DRIVER"/>
<Add option="-DSTM32G431xx"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/APP"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/InteriorADC"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Utils"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/Target"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/Legacy"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/Include"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include-fixed"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"/>
</Compiler>
<MakeCommands>
<Build command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 BoooomFOC_STSPIN32G4_EVB.elf"/>
<CompileFile command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="BoooomFOC_STSPIN32G4_EVB.elf/fast">
<Option output="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/BoooomFOC_STSPIN32G4_EVB.elf" prefix_auto="0" extension_auto="0"/>
<Option working_dir="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug"/>
<Option object_output="./"/>
<Option type="1"/>
<Option compiler="gcc"/>
<Compiler>
<Add option="-DARM_MATH_CM4"/>
<Add option="-DARM_MATH_MATRIX_CHECK"/>
<Add option="-DARM_MATH_ROUNDING"/>
<Add option="-DDEBUG"/>
<Add option="-DUSE_HAL_DRIVER"/>
<Add option="-DSTM32G431xx"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/APP"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/InteriorADC"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Utils"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/Target"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/Legacy"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/Include"/>
<Add directory="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include-fixed"/>
<Add directory="e:\software_develop_tools\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"/>
</Compiler>
<MakeCommands>
<Build command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 BoooomFOC_STSPIN32G4_EVB.elf/fast"/>
<CompileFile command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="edit_cache">
<Option working_dir="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug"/>
<Option type="4"/>
<MakeCommands>
<Build command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 edit_cache"/>
<CompileFile command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="rebuild_cache">
<Option working_dir="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug"/>
<Option type="4"/>
<MakeCommands>
<Build command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 rebuild_cache"/>
<CompileFile command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="E:/MinGW/bin/mingw32-make.exe -f &quot;E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
</Build>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/APP/APP_Main.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/APP/APP_Main.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Common/PID/PID.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Common/PID/PID.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication/Communication.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication/Communication.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication/Vofa/VOFA.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Communication/Vofa/VOFA.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/Controller.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/Controller.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/PreDrive/PreDrive.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/PreDrive/PreDrive.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/SVPWM/SVPWM.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Controller/SVPWM/SVPWM.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle/Angle.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle/Angle.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle/MT6816/MT6816.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Angle/MT6816/MT6816.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/Current.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/Current.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/InteriorADC/InteriorADC.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Current/InteriorADC/InteriorADC.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Data.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Data.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Temperature/Temperature.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Temperature/Temperature.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Voltage/Voltage.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Data/Voltage/Voltage.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Parameter/Parameter.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Parameter/Parameter.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Peripheral/SPI/SPI.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Peripheral/SPI/SPI.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/BoooomDriver/Utils/arm_math.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/adc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/dma.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/gpio.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/i2c.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/main.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/opamp.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/spi.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/stm32g4xx_hal_conf.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/stm32g4xx_it.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Inc/tim.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/adc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/dma.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/gpio.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/i2c.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/main.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/opamp.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/spi.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/stm32g4xx_hal_msp.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/stm32g4xx_it.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/syscalls.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/sysmem.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/system_stm32g4xx.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Src/tim.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Core/Startup/startup_stm32g431vbtx.s">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/Include/stm32g431xx.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/Include/stm32g4xx.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/Include/system_stm32g4xx.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Device/ST/STM32G4xx/LICENSE.txt">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_armcc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_armclang.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_armclang_ltm.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_compiler.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_gcc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_iccarm.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/cmsis_version.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_armv81mml.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_armv8mbl.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_armv8mml.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm0.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm0plus.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm1.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm23.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm3.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm33.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm35p.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm4.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_cm7.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_sc000.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/core_sc300.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/mpu_armv7.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/mpu_armv8.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/Include/tz_context.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/CMSIS/LICENSE.txt">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_adc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_adc_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_cortex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_def.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_dma.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_dma_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_exti.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_flash.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_flash_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_flash_ramfunc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_gpio.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_gpio_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_i2c.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_i2c_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_opamp.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_opamp_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pcd.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pcd_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pwr.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pwr_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_rcc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_rcc_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_spi.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_spi_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_tim.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_tim_ex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_adc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_bus.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_cortex.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_crs.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_dma.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_dmamux.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_exti.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_gpio.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_i2c.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_pwr.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_rcc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_system.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_tim.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_usb.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Inc/stm32g4xx_ll_utils.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/LICENSE.txt">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_adc_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_cortex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_dma_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_exti.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_flash_ramfunc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_gpio.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_i2c_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_opamp.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_opamp_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pcd_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_pwr_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_rcc_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_spi.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_spi_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_hal_tim_ex.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_adc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Drivers/STM32G4xx_HAL_Driver/Src/stm32g4xx_ll_usb.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/STM32G431VBTX_FLASH.ld">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usb_device.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usb_device.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usbd_cdc_if.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usbd_cdc_if.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usbd_desc.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/App/usbd_desc.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/Target/usbd_conf.c">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/USB_Device/Target/usbd_conf.h">
<Option target="BoooomFOC_STSPIN32G4_EVB.elf"/>
</Unit>
<Unit filename="E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/CMakeLists.txt">
<Option virtualFolder="CMake Files\"/>
</Unit>
</Project>
</CodeBlocks_project_file>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,382 +0,0 @@
# This is the CMakeCache file.
# For build in directory: e:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug
# It was generated by CMake: D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/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
########################
//Value Computed by CMake
BoooomFOC_STSPIN32G4_EVB_BINARY_DIR:STATIC=E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug
//Value Computed by CMake
BoooomFOC_STSPIN32G4_EVB_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
BoooomFOC_STSPIN32G4_EVB_SOURCE_DIR:STATIC=E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-addr2line.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.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=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=Debug
//Enable colored diagnostics throughout.
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//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=E:/MinGW/bin/dlltool.exe
//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=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/BoooomFOC_STSPIN32G4_EVB
//Path to a program.
CMAKE_LINKER:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe
//make program
CMAKE_MAKE_PROGRAM:FILEPATH=D:/JetBrains/CLion 2023.1.3/bin/ninja/win/x64/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=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-nm.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=BoooomFOC_STSPIN32G4_EVB
//Path to a program.
CMAKE_RANLIB:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe
//Path to a program.
CMAKE_READELF:FILEPATH=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-readelf.exe
//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=E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-strip.exe
//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
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-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=e:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB/cmake-build-debug
//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=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//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
//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
//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=E:/My_Git_Warehouse/Software/Project/BoooomFOC_STSPIN32G4_EVB
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-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
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=D:/JetBrains/CLion 2023.1.3/bin/cmake/win/x64/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 "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "arm-none-eabi-ar")
set(CMAKE_ASM_COMPILER_AR "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe")
set(CMAKE_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe")
set(CMAKE_ASM_COMPILER_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "GNU")
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 "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "10.3.1")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
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;c_std_23")
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 "c_std_23")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "arm-none-eabi-ar")
set(CMAKE_C_COMPILER_AR "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe")
set(CMAKE_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCC 1)
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 TRUE)
# 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 "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -1,85 +0,0 @@
set(CMAKE_CXX_COMPILER "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "10.3.1")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "")
set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "arm-none-eabi-ar")
set(CMAKE_CXX_COMPILER_AR "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe")
set(CMAKE_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe")
set(CMAKE_CXX_COMPILER_RANLIB "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe")
set(CMAKE_LINKER "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe")
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;E:/SoftWare_Develop_Tools/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.22631")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_SYSTEM "Generic-1")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "1")
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,869 +0,0 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#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(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif 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_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 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(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 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(__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__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# 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
/* 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(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_standard_default = "INFO" ":" "standard_default["
#if CXX_STD > 202002L
"23"
#elif CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
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
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
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;
}

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