将外设的初始化放到单独的文件中,增加bsp_can
This commit is contained in:
parent
e5a7e132c9
commit
ca084f8e0c
24
.mxproject
24
.mxproject
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,117 @@
|
|||
#include "can_bsp.h"
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: can_bsp_init(void)
|
||||
* @param: void
|
||||
* @retval: void
|
||||
* @details: CAN使能
|
||||
************************************************************************
|
||||
**/
|
||||
void can_bsp_init(void)
|
||||
{
|
||||
can_filter_init();
|
||||
HAL_FDCAN_Start(&hfdcan1); //开启FDCAN
|
||||
HAL_FDCAN_ActivateNotification(&hfdcan1, FDCAN_IT_RX_FIFO0_NEW_MESSAGE, 0);
|
||||
}
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: can_filter_init(void)
|
||||
* @param: void
|
||||
* @retval: void
|
||||
* @details: CAN滤波器初始化
|
||||
************************************************************************
|
||||
**/
|
||||
void can_filter_init(void)
|
||||
{
|
||||
FDCAN_FilterTypeDef fdcan_filter;
|
||||
|
||||
fdcan_filter.IdType = FDCAN_STANDARD_ID; //标准ID
|
||||
fdcan_filter.FilterIndex = 0; //滤波器索引
|
||||
fdcan_filter.FilterType = FDCAN_FILTER_RANGE; //滤波器类型
|
||||
fdcan_filter.FilterConfig = FDCAN_FILTER_TO_RXFIFO0; //过滤器0关联到FIFO0
|
||||
fdcan_filter.FilterID1 = 0x0000; //32位ID
|
||||
fdcan_filter.FilterID2 = 0x0000; //如果FDCAN配置为传统模式的话,这是32位掩码
|
||||
if(HAL_FDCAN_ConfigFilter(&hfdcan1,&fdcan_filter)!=HAL_OK) //滤波器初始化
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
HAL_FDCAN_ConfigFifoWatermark(&hfdcan1, FDCAN_CFG_RX_FIFO0, 1);
|
||||
}
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: fdcanx_send_data(FDCAN_HandleTypeDef *hfdcan, uint16_t id, uint8_t *data, uint32_t len)
|
||||
* @param: hfdcan:FDCAN句柄
|
||||
* @param: id:CAN设备ID
|
||||
* @param: data:发送的数据
|
||||
* @param: len:发送的数据长度
|
||||
* @retval: void
|
||||
* @details: 发送数据
|
||||
************************************************************************
|
||||
**/
|
||||
uint8_t fdcanx_send_data(FDCAN_HandleTypeDef *hfdcan, uint16_t id, uint8_t *data, uint32_t len)
|
||||
{
|
||||
FDCAN_TxHeaderTypeDef TxHeader;
|
||||
|
||||
TxHeader.Identifier = id;
|
||||
TxHeader.IdType = FDCAN_STANDARD_ID; // 标准ID
|
||||
TxHeader.TxFrameType = FDCAN_DATA_FRAME; // 数据帧
|
||||
TxHeader.DataLength = len << 16; // 发送数据长度
|
||||
TxHeader.ErrorStateIndicator = FDCAN_ESI_ACTIVE; // 设置错误状态指示
|
||||
TxHeader.BitRateSwitch = FDCAN_BRS_OFF; //不开启可变波特率
|
||||
TxHeader.FDFormat = FDCAN_CLASSIC_CAN; //普通CAN格式
|
||||
TxHeader.TxEventFifoControl = FDCAN_NO_TX_EVENTS; // 用于发送事件FIFO控制, 不存储
|
||||
TxHeader.MessageMarker = 0x00; // 用于复制到TX EVENT FIFO的消息Maker来识别消息状态,范围0到0xFF
|
||||
|
||||
if(HAL_FDCAN_AddMessageToTxFifoQ(hfdcan, &TxHeader, data)!=HAL_OK)
|
||||
return 1;//发送
|
||||
return 0;
|
||||
}
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: fdcanx_receive(FDCAN_HandleTypeDef *hfdcan, uint8_t *buf)
|
||||
* @param: hfdcan:FDCAN句柄
|
||||
* @param: buf:接收数据缓存
|
||||
* @retval: 接收的数据长度
|
||||
* @details: 接收数据
|
||||
************************************************************************
|
||||
**/
|
||||
uint8_t fdcanx_receive(FDCAN_HandleTypeDef *hfdcan, uint8_t *buf)
|
||||
{
|
||||
FDCAN_RxHeaderTypeDef fdcan_RxHeader;
|
||||
if(HAL_FDCAN_GetRxMessage(hfdcan,FDCAN_RX_FIFO0, &fdcan_RxHeader, buf)!=HAL_OK)
|
||||
return 0;//接收数据
|
||||
return fdcan_RxHeader.DataLength>>16;
|
||||
}
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: HAL_FDCAN_RxFifo0Callback(FDCAN_HandleTypeDef *hfdcan, uint32_t RxFifo0ITs)
|
||||
* @param: hfdcan;FDCAN句柄
|
||||
* @param: RxFifo0ITs:中断标志位
|
||||
* @retval: void
|
||||
* @details: HAL库的FDCAN中断回调函数
|
||||
************************************************************************
|
||||
**/
|
||||
void HAL_FDCAN_RxFifo0Callback(FDCAN_HandleTypeDef *hfdcan, uint32_t RxFifo0ITs)
|
||||
{
|
||||
if((RxFifo0ITs & FDCAN_IT_RX_FIFO0_NEW_MESSAGE) != RESET)
|
||||
{
|
||||
if(hfdcan == &hfdcan1)
|
||||
{
|
||||
fdcan1_rx_callback();
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
************************************************************************
|
||||
* @brief: fdcan_rx_callback(void)
|
||||
* @param: void
|
||||
* @retval: void
|
||||
* @details: 供用户调用的接收弱函数
|
||||
************************************************************************
|
||||
**/
|
||||
uint8_t rx_data1[8] = {0};
|
||||
void fdcan1_rx_callback(void)
|
||||
{
|
||||
fdcanx_receive(&hfdcan1, rx_data1);
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
#ifndef __CAN_BSP_H__
|
||||
#define __CAN_BSP_H__
|
||||
#include "main.h"
|
||||
#include "fdcan.h"
|
||||
|
||||
void can_bsp_init(void);
|
||||
void can_filter_init(void);
|
||||
uint8_t fdcanx_send_data(FDCAN_HandleTypeDef *hfdcan, uint16_t id, uint8_t *data, uint32_t len);
|
||||
uint8_t fdcanx_receive(FDCAN_HandleTypeDef *hfdcan, uint8_t *buf);
|
||||
void fdcan1_rx_callback(void);
|
||||
void fdcan2_rx_callback(void);
|
||||
void fdcan3_rx_callback(void);
|
||||
|
||||
#endif /* __CAN_BSP_H_ */
|
||||
|
|
@ -50,11 +50,11 @@ else ()
|
|||
endif ()
|
||||
|
||||
include_directories(Core/Inc Drivers/STM32H7xx_HAL_Driver/Inc Drivers/STM32H7xx_HAL_Driver/Inc/Legacy
|
||||
Drivers/CMSIS/Device/ST/STM32H7xx/Include Drivers/CMSIS/Include Middlewares/ST/ARM/DSP/Inc USER)
|
||||
Drivers/CMSIS/Device/ST/STM32H7xx/Include Drivers/CMSIS/Include Middlewares/ST/ARM/DSP/Inc USER BSP)
|
||||
|
||||
add_definitions(-DDEBUG -DUSE_HAL_DRIVER -DSTM32H723xx)
|
||||
|
||||
file(GLOB_RECURSE SOURCES "Core/*.*" "Middlewares/*.*" "Drivers/*.*" "USER/*.*")
|
||||
file(GLOB_RECURSE SOURCES "Core/*.*" "Middlewares/*.*" "Drivers/*.*" "USER/*.*" "BSP/*.*")
|
||||
|
||||
set(LINKER_SCRIPT ${CMAKE_SOURCE_DIR}/STM32H723VGTX_FLASH.ld)
|
||||
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file fdcan.h
|
||||
* @brief This file contains all the function prototypes for
|
||||
* the fdcan.c file
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __FDCAN_H__
|
||||
#define __FDCAN_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "main.h"
|
||||
|
||||
/* USER CODE BEGIN Includes */
|
||||
|
||||
/* USER CODE END Includes */
|
||||
|
||||
extern FDCAN_HandleTypeDef hfdcan1;
|
||||
|
||||
/* USER CODE BEGIN Private defines */
|
||||
|
||||
/* USER CODE END Private defines */
|
||||
|
||||
void MX_FDCAN1_Init(void);
|
||||
|
||||
/* USER CODE BEGIN Prototypes */
|
||||
|
||||
/* USER CODE END Prototypes */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __FDCAN_H__ */
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file gpio.h
|
||||
* @brief This file contains all the function prototypes for
|
||||
* the gpio.c file
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __GPIO_H__
|
||||
#define __GPIO_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "main.h"
|
||||
|
||||
/* USER CODE BEGIN Includes */
|
||||
|
||||
/* USER CODE END Includes */
|
||||
|
||||
/* USER CODE BEGIN Private defines */
|
||||
|
||||
/* USER CODE END Private defines */
|
||||
|
||||
void MX_GPIO_Init(void);
|
||||
|
||||
/* USER CODE BEGIN Prototypes */
|
||||
|
||||
/* USER CODE END Prototypes */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /*__ GPIO_H__ */
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file usart.h
|
||||
* @brief This file contains all the function prototypes for
|
||||
* the usart.c file
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __USART_H__
|
||||
#define __USART_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "main.h"
|
||||
|
||||
/* USER CODE BEGIN Includes */
|
||||
|
||||
/* USER CODE END Includes */
|
||||
|
||||
extern UART_HandleTypeDef huart1;
|
||||
|
||||
/* USER CODE BEGIN Private defines */
|
||||
|
||||
/* USER CODE END Private defines */
|
||||
|
||||
void MX_USART1_UART_Init(void);
|
||||
|
||||
/* USER CODE BEGIN Prototypes */
|
||||
|
||||
/* USER CODE END Prototypes */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __USART_H__ */
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file fdcan.c
|
||||
* @brief This file provides code for the configuration
|
||||
* of the FDCAN instances.
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "fdcan.h"
|
||||
|
||||
/* USER CODE BEGIN 0 */
|
||||
|
||||
/* USER CODE END 0 */
|
||||
|
||||
FDCAN_HandleTypeDef hfdcan1;
|
||||
|
||||
/* FDCAN1 init function */
|
||||
void MX_FDCAN1_Init(void)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN FDCAN1_Init 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 0 */
|
||||
|
||||
/* USER CODE BEGIN FDCAN1_Init 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 1 */
|
||||
hfdcan1.Instance = FDCAN1;
|
||||
hfdcan1.Init.FrameFormat = FDCAN_FRAME_CLASSIC;
|
||||
hfdcan1.Init.Mode = FDCAN_MODE_NORMAL;
|
||||
hfdcan1.Init.AutoRetransmission = DISABLE;
|
||||
hfdcan1.Init.TransmitPause = DISABLE;
|
||||
hfdcan1.Init.ProtocolException = DISABLE;
|
||||
hfdcan1.Init.NominalPrescaler = 24;
|
||||
hfdcan1.Init.NominalSyncJumpWidth = 1;
|
||||
hfdcan1.Init.NominalTimeSeg1 = 2;
|
||||
hfdcan1.Init.NominalTimeSeg2 = 2;
|
||||
hfdcan1.Init.DataPrescaler = 1;
|
||||
hfdcan1.Init.DataSyncJumpWidth = 1;
|
||||
hfdcan1.Init.DataTimeSeg1 = 1;
|
||||
hfdcan1.Init.DataTimeSeg2 = 1;
|
||||
hfdcan1.Init.MessageRAMOffset = 0;
|
||||
hfdcan1.Init.StdFiltersNbr = 1;
|
||||
hfdcan1.Init.ExtFiltersNbr = 0;
|
||||
hfdcan1.Init.RxFifo0ElmtsNbr = 32;
|
||||
hfdcan1.Init.RxFifo0ElmtSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.RxFifo1ElmtsNbr = 0;
|
||||
hfdcan1.Init.RxFifo1ElmtSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.RxBuffersNbr = 0;
|
||||
hfdcan1.Init.RxBufferSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.TxEventsNbr = 0;
|
||||
hfdcan1.Init.TxBuffersNbr = 0;
|
||||
hfdcan1.Init.TxFifoQueueElmtsNbr = 32;
|
||||
hfdcan1.Init.TxFifoQueueMode = FDCAN_TX_FIFO_OPERATION;
|
||||
hfdcan1.Init.TxElmtSize = FDCAN_DATA_BYTES_8;
|
||||
if (HAL_FDCAN_Init(&hfdcan1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
/* USER CODE BEGIN FDCAN1_Init 2 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 2 */
|
||||
|
||||
}
|
||||
|
||||
void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* fdcanHandle)
|
||||
{
|
||||
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
||||
if(fdcanHandle->Instance==FDCAN1)
|
||||
{
|
||||
/* USER CODE BEGIN FDCAN1_MspInit 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspInit 0 */
|
||||
|
||||
/** Initializes the peripherals clock
|
||||
*/
|
||||
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_FDCAN;
|
||||
PeriphClkInitStruct.FdcanClockSelection = RCC_FDCANCLKSOURCE_PLL;
|
||||
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
|
||||
/* FDCAN1 clock enable */
|
||||
__HAL_RCC_FDCAN_CLK_ENABLE();
|
||||
|
||||
__HAL_RCC_GPIOA_CLK_ENABLE();
|
||||
/**FDCAN1 GPIO Configuration
|
||||
PA11 ------> FDCAN1_RX
|
||||
PA12 ------> FDCAN1_TX
|
||||
*/
|
||||
GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
GPIO_InitStruct.Alternate = GPIO_AF9_FDCAN1;
|
||||
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
||||
|
||||
/* FDCAN1 interrupt Init */
|
||||
HAL_NVIC_SetPriority(FDCAN1_IT0_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(FDCAN1_IT0_IRQn);
|
||||
HAL_NVIC_SetPriority(FDCAN1_IT1_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(FDCAN1_IT1_IRQn);
|
||||
/* USER CODE BEGIN FDCAN1_MspInit 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspInit 1 */
|
||||
}
|
||||
}
|
||||
|
||||
void HAL_FDCAN_MspDeInit(FDCAN_HandleTypeDef* fdcanHandle)
|
||||
{
|
||||
|
||||
if(fdcanHandle->Instance==FDCAN1)
|
||||
{
|
||||
/* USER CODE BEGIN FDCAN1_MspDeInit 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspDeInit 0 */
|
||||
/* Peripheral clock disable */
|
||||
__HAL_RCC_FDCAN_CLK_DISABLE();
|
||||
|
||||
/**FDCAN1 GPIO Configuration
|
||||
PA11 ------> FDCAN1_RX
|
||||
PA12 ------> FDCAN1_TX
|
||||
*/
|
||||
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_11|GPIO_PIN_12);
|
||||
|
||||
/* FDCAN1 interrupt Deinit */
|
||||
HAL_NVIC_DisableIRQ(FDCAN1_IT0_IRQn);
|
||||
HAL_NVIC_DisableIRQ(FDCAN1_IT1_IRQn);
|
||||
/* USER CODE BEGIN FDCAN1_MspDeInit 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspDeInit 1 */
|
||||
}
|
||||
}
|
||||
|
||||
/* USER CODE BEGIN 1 */
|
||||
|
||||
/* USER CODE END 1 */
|
|
@ -0,0 +1,66 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file gpio.c
|
||||
* @brief This file provides code for the configuration
|
||||
* of all used GPIO pins.
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "gpio.h"
|
||||
|
||||
/* USER CODE BEGIN 0 */
|
||||
|
||||
/* USER CODE END 0 */
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
/* Configure GPIO */
|
||||
/*----------------------------------------------------------------------------*/
|
||||
/* USER CODE BEGIN 1 */
|
||||
|
||||
/* USER CODE END 1 */
|
||||
|
||||
/** Configure pins as
|
||||
* Analog
|
||||
* Input
|
||||
* Output
|
||||
* EVENT_OUT
|
||||
* EXTI
|
||||
*/
|
||||
void MX_GPIO_Init(void)
|
||||
{
|
||||
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
|
||||
/* GPIO Ports Clock Enable */
|
||||
__HAL_RCC_GPIOH_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOA_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOB_CLK_ENABLE();
|
||||
|
||||
/*Configure GPIO pin Output Level */
|
||||
HAL_GPIO_WritePin(LED_GPIO_Port, LED_Pin, GPIO_PIN_RESET);
|
||||
|
||||
/*Configure GPIO pin : PtPin */
|
||||
GPIO_InitStruct.Pin = LED_Pin;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
HAL_GPIO_Init(LED_GPIO_Port, &GPIO_InitStruct);
|
||||
|
||||
}
|
||||
|
||||
/* USER CODE BEGIN 2 */
|
||||
|
||||
/* USER CODE END 2 */
|
141
Core/Src/main.c
141
Core/Src/main.c
|
@ -18,6 +18,9 @@
|
|||
/* USER CODE END Header */
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "main.h"
|
||||
#include "fdcan.h"
|
||||
#include "usart.h"
|
||||
#include "gpio.h"
|
||||
|
||||
/* Private includes ----------------------------------------------------------*/
|
||||
/* USER CODE BEGIN Includes */
|
||||
|
@ -41,19 +44,12 @@
|
|||
|
||||
/* Private variables ---------------------------------------------------------*/
|
||||
|
||||
FDCAN_HandleTypeDef hfdcan1;
|
||||
|
||||
UART_HandleTypeDef huart1;
|
||||
|
||||
/* USER CODE BEGIN PV */
|
||||
|
||||
/* USER CODE END PV */
|
||||
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
void SystemClock_Config(void);
|
||||
static void MX_GPIO_Init(void);
|
||||
static void MX_FDCAN1_Init(void);
|
||||
static void MX_USART1_UART_Init(void);
|
||||
/* USER CODE BEGIN PFP */
|
||||
|
||||
/* USER CODE END PFP */
|
||||
|
@ -168,137 +164,6 @@ void SystemClock_Config(void)
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief FDCAN1 Initialization Function
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
static void MX_FDCAN1_Init(void)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN FDCAN1_Init 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 0 */
|
||||
|
||||
/* USER CODE BEGIN FDCAN1_Init 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 1 */
|
||||
hfdcan1.Instance = FDCAN1;
|
||||
hfdcan1.Init.FrameFormat = FDCAN_FRAME_CLASSIC;
|
||||
hfdcan1.Init.Mode = FDCAN_MODE_NORMAL;
|
||||
hfdcan1.Init.AutoRetransmission = DISABLE;
|
||||
hfdcan1.Init.TransmitPause = DISABLE;
|
||||
hfdcan1.Init.ProtocolException = DISABLE;
|
||||
hfdcan1.Init.NominalPrescaler = 24;
|
||||
hfdcan1.Init.NominalSyncJumpWidth = 1;
|
||||
hfdcan1.Init.NominalTimeSeg1 = 2;
|
||||
hfdcan1.Init.NominalTimeSeg2 = 2;
|
||||
hfdcan1.Init.DataPrescaler = 1;
|
||||
hfdcan1.Init.DataSyncJumpWidth = 1;
|
||||
hfdcan1.Init.DataTimeSeg1 = 1;
|
||||
hfdcan1.Init.DataTimeSeg2 = 1;
|
||||
hfdcan1.Init.MessageRAMOffset = 0;
|
||||
hfdcan1.Init.StdFiltersNbr = 1;
|
||||
hfdcan1.Init.ExtFiltersNbr = 0;
|
||||
hfdcan1.Init.RxFifo0ElmtsNbr = 32;
|
||||
hfdcan1.Init.RxFifo0ElmtSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.RxFifo1ElmtsNbr = 0;
|
||||
hfdcan1.Init.RxFifo1ElmtSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.RxBuffersNbr = 0;
|
||||
hfdcan1.Init.RxBufferSize = FDCAN_DATA_BYTES_8;
|
||||
hfdcan1.Init.TxEventsNbr = 0;
|
||||
hfdcan1.Init.TxBuffersNbr = 0;
|
||||
hfdcan1.Init.TxFifoQueueElmtsNbr = 32;
|
||||
hfdcan1.Init.TxFifoQueueMode = FDCAN_TX_FIFO_OPERATION;
|
||||
hfdcan1.Init.TxElmtSize = FDCAN_DATA_BYTES_8;
|
||||
if (HAL_FDCAN_Init(&hfdcan1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
/* USER CODE BEGIN FDCAN1_Init 2 */
|
||||
|
||||
/* USER CODE END FDCAN1_Init 2 */
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief USART1 Initialization Function
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
static void MX_USART1_UART_Init(void)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN USART1_Init 0 */
|
||||
|
||||
/* USER CODE END USART1_Init 0 */
|
||||
|
||||
/* USER CODE BEGIN USART1_Init 1 */
|
||||
|
||||
/* USER CODE END USART1_Init 1 */
|
||||
huart1.Instance = USART1;
|
||||
huart1.Init.BaudRate = 115200;
|
||||
huart1.Init.WordLength = UART_WORDLENGTH_8B;
|
||||
huart1.Init.StopBits = UART_STOPBITS_1;
|
||||
huart1.Init.Parity = UART_PARITY_NONE;
|
||||
huart1.Init.Mode = UART_MODE_TX_RX;
|
||||
huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
||||
huart1.Init.OverSampling = UART_OVERSAMPLING_16;
|
||||
huart1.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
|
||||
huart1.Init.ClockPrescaler = UART_PRESCALER_DIV1;
|
||||
huart1.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
|
||||
if (HAL_UART_Init(&huart1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_SetTxFifoThreshold(&huart1, UART_TXFIFO_THRESHOLD_1_8) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_SetRxFifoThreshold(&huart1, UART_RXFIFO_THRESHOLD_1_8) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_DisableFifoMode(&huart1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
/* USER CODE BEGIN USART1_Init 2 */
|
||||
|
||||
/* USER CODE END USART1_Init 2 */
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief GPIO Initialization Function
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
static void MX_GPIO_Init(void)
|
||||
{
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
/* USER CODE BEGIN MX_GPIO_Init_1 */
|
||||
/* USER CODE END MX_GPIO_Init_1 */
|
||||
|
||||
/* GPIO Ports Clock Enable */
|
||||
__HAL_RCC_GPIOH_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOA_CLK_ENABLE();
|
||||
__HAL_RCC_GPIOB_CLK_ENABLE();
|
||||
|
||||
/*Configure GPIO pin Output Level */
|
||||
HAL_GPIO_WritePin(LED_GPIO_Port, LED_Pin, GPIO_PIN_RESET);
|
||||
|
||||
/*Configure GPIO pin : LED_Pin */
|
||||
GPIO_InitStruct.Pin = LED_Pin;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
HAL_GPIO_Init(LED_GPIO_Port, &GPIO_InitStruct);
|
||||
|
||||
/* USER CODE BEGIN MX_GPIO_Init_2 */
|
||||
/* USER CODE END MX_GPIO_Init_2 */
|
||||
}
|
||||
|
||||
/* USER CODE BEGIN 4 */
|
||||
|
||||
/* USER CODE END 4 */
|
||||
|
|
|
@ -76,171 +76,6 @@ void HAL_MspInit(void)
|
|||
/* USER CODE END MspInit 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief FDCAN MSP Initialization
|
||||
* This function configures the hardware resources used in this example
|
||||
* @param hfdcan: FDCAN handle pointer
|
||||
* @retval None
|
||||
*/
|
||||
void HAL_FDCAN_MspInit(FDCAN_HandleTypeDef* hfdcan)
|
||||
{
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
||||
if(hfdcan->Instance==FDCAN1)
|
||||
{
|
||||
/* USER CODE BEGIN FDCAN1_MspInit 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspInit 0 */
|
||||
|
||||
/** Initializes the peripherals clock
|
||||
*/
|
||||
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_FDCAN;
|
||||
PeriphClkInitStruct.FdcanClockSelection = RCC_FDCANCLKSOURCE_PLL;
|
||||
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
|
||||
/* Peripheral clock enable */
|
||||
__HAL_RCC_FDCAN_CLK_ENABLE();
|
||||
|
||||
__HAL_RCC_GPIOA_CLK_ENABLE();
|
||||
/**FDCAN1 GPIO Configuration
|
||||
PA11 ------> FDCAN1_RX
|
||||
PA12 ------> FDCAN1_TX
|
||||
*/
|
||||
GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
GPIO_InitStruct.Alternate = GPIO_AF9_FDCAN1;
|
||||
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
||||
|
||||
/* FDCAN1 interrupt Init */
|
||||
HAL_NVIC_SetPriority(FDCAN1_IT0_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(FDCAN1_IT0_IRQn);
|
||||
HAL_NVIC_SetPriority(FDCAN1_IT1_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(FDCAN1_IT1_IRQn);
|
||||
/* USER CODE BEGIN FDCAN1_MspInit 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspInit 1 */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief FDCAN MSP De-Initialization
|
||||
* This function freeze the hardware resources used in this example
|
||||
* @param hfdcan: FDCAN handle pointer
|
||||
* @retval None
|
||||
*/
|
||||
void HAL_FDCAN_MspDeInit(FDCAN_HandleTypeDef* hfdcan)
|
||||
{
|
||||
if(hfdcan->Instance==FDCAN1)
|
||||
{
|
||||
/* USER CODE BEGIN FDCAN1_MspDeInit 0 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspDeInit 0 */
|
||||
/* Peripheral clock disable */
|
||||
__HAL_RCC_FDCAN_CLK_DISABLE();
|
||||
|
||||
/**FDCAN1 GPIO Configuration
|
||||
PA11 ------> FDCAN1_RX
|
||||
PA12 ------> FDCAN1_TX
|
||||
*/
|
||||
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_11|GPIO_PIN_12);
|
||||
|
||||
/* FDCAN1 interrupt DeInit */
|
||||
HAL_NVIC_DisableIRQ(FDCAN1_IT0_IRQn);
|
||||
HAL_NVIC_DisableIRQ(FDCAN1_IT1_IRQn);
|
||||
/* USER CODE BEGIN FDCAN1_MspDeInit 1 */
|
||||
|
||||
/* USER CODE END FDCAN1_MspDeInit 1 */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief UART MSP Initialization
|
||||
* This function configures the hardware resources used in this example
|
||||
* @param huart: UART handle pointer
|
||||
* @retval None
|
||||
*/
|
||||
void HAL_UART_MspInit(UART_HandleTypeDef* huart)
|
||||
{
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
||||
if(huart->Instance==USART1)
|
||||
{
|
||||
/* USER CODE BEGIN USART1_MspInit 0 */
|
||||
|
||||
/* USER CODE END USART1_MspInit 0 */
|
||||
|
||||
/** Initializes the peripherals clock
|
||||
*/
|
||||
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_USART1;
|
||||
PeriphClkInitStruct.Usart16ClockSelection = RCC_USART16910CLKSOURCE_D2PCLK2;
|
||||
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
|
||||
/* Peripheral clock enable */
|
||||
__HAL_RCC_USART1_CLK_ENABLE();
|
||||
|
||||
__HAL_RCC_GPIOB_CLK_ENABLE();
|
||||
/**USART1 GPIO Configuration
|
||||
PB14 ------> USART1_TX
|
||||
PB15 ------> USART1_RX
|
||||
*/
|
||||
GPIO_InitStruct.Pin = GPIO_PIN_14|GPIO_PIN_15;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
GPIO_InitStruct.Alternate = GPIO_AF4_USART1;
|
||||
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
||||
|
||||
/* USART1 interrupt Init */
|
||||
HAL_NVIC_SetPriority(USART1_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(USART1_IRQn);
|
||||
/* USER CODE BEGIN USART1_MspInit 1 */
|
||||
|
||||
/* USER CODE END USART1_MspInit 1 */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief UART MSP De-Initialization
|
||||
* This function freeze the hardware resources used in this example
|
||||
* @param huart: UART handle pointer
|
||||
* @retval None
|
||||
*/
|
||||
void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)
|
||||
{
|
||||
if(huart->Instance==USART1)
|
||||
{
|
||||
/* USER CODE BEGIN USART1_MspDeInit 0 */
|
||||
|
||||
/* USER CODE END USART1_MspDeInit 0 */
|
||||
/* Peripheral clock disable */
|
||||
__HAL_RCC_USART1_CLK_DISABLE();
|
||||
|
||||
/**USART1 GPIO Configuration
|
||||
PB14 ------> USART1_TX
|
||||
PB15 ------> USART1_RX
|
||||
*/
|
||||
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_14|GPIO_PIN_15);
|
||||
|
||||
/* USART1 interrupt DeInit */
|
||||
HAL_NVIC_DisableIRQ(USART1_IRQn);
|
||||
/* USER CODE BEGIN USART1_MspDeInit 1 */
|
||||
|
||||
/* USER CODE END USART1_MspDeInit 1 */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* USER CODE BEGIN 1 */
|
||||
|
||||
/* USER CODE END 1 */
|
||||
|
|
|
@ -0,0 +1,145 @@
|
|||
/* USER CODE BEGIN Header */
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file usart.c
|
||||
* @brief This file provides code for the configuration
|
||||
* of the USART instances.
|
||||
******************************************************************************
|
||||
* @attention
|
||||
*
|
||||
* Copyright (c) 2024 STMicroelectronics.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software is licensed under terms that can be found in the LICENSE file
|
||||
* in the root directory of this software component.
|
||||
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||||
*
|
||||
******************************************************************************
|
||||
*/
|
||||
/* USER CODE END Header */
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "usart.h"
|
||||
|
||||
/* USER CODE BEGIN 0 */
|
||||
|
||||
/* USER CODE END 0 */
|
||||
|
||||
UART_HandleTypeDef huart1;
|
||||
|
||||
/* USART1 init function */
|
||||
|
||||
void MX_USART1_UART_Init(void)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN USART1_Init 0 */
|
||||
|
||||
/* USER CODE END USART1_Init 0 */
|
||||
|
||||
/* USER CODE BEGIN USART1_Init 1 */
|
||||
|
||||
/* USER CODE END USART1_Init 1 */
|
||||
huart1.Instance = USART1;
|
||||
huart1.Init.BaudRate = 115200;
|
||||
huart1.Init.WordLength = UART_WORDLENGTH_8B;
|
||||
huart1.Init.StopBits = UART_STOPBITS_1;
|
||||
huart1.Init.Parity = UART_PARITY_NONE;
|
||||
huart1.Init.Mode = UART_MODE_TX_RX;
|
||||
huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
||||
huart1.Init.OverSampling = UART_OVERSAMPLING_16;
|
||||
huart1.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
|
||||
huart1.Init.ClockPrescaler = UART_PRESCALER_DIV1;
|
||||
huart1.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
|
||||
if (HAL_UART_Init(&huart1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_SetTxFifoThreshold(&huart1, UART_TXFIFO_THRESHOLD_1_8) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_SetRxFifoThreshold(&huart1, UART_RXFIFO_THRESHOLD_1_8) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
if (HAL_UARTEx_DisableFifoMode(&huart1) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
/* USER CODE BEGIN USART1_Init 2 */
|
||||
|
||||
/* USER CODE END USART1_Init 2 */
|
||||
|
||||
}
|
||||
|
||||
void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle)
|
||||
{
|
||||
|
||||
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
||||
if(uartHandle->Instance==USART1)
|
||||
{
|
||||
/* USER CODE BEGIN USART1_MspInit 0 */
|
||||
|
||||
/* USER CODE END USART1_MspInit 0 */
|
||||
|
||||
/** Initializes the peripherals clock
|
||||
*/
|
||||
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_USART1;
|
||||
PeriphClkInitStruct.Usart16ClockSelection = RCC_USART16910CLKSOURCE_D2PCLK2;
|
||||
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
||||
{
|
||||
Error_Handler();
|
||||
}
|
||||
|
||||
/* USART1 clock enable */
|
||||
__HAL_RCC_USART1_CLK_ENABLE();
|
||||
|
||||
__HAL_RCC_GPIOB_CLK_ENABLE();
|
||||
/**USART1 GPIO Configuration
|
||||
PB14 ------> USART1_TX
|
||||
PB15 ------> USART1_RX
|
||||
*/
|
||||
GPIO_InitStruct.Pin = GPIO_PIN_14|GPIO_PIN_15;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
||||
GPIO_InitStruct.Alternate = GPIO_AF4_USART1;
|
||||
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
||||
|
||||
/* USART1 interrupt Init */
|
||||
HAL_NVIC_SetPriority(USART1_IRQn, 0, 0);
|
||||
HAL_NVIC_EnableIRQ(USART1_IRQn);
|
||||
/* USER CODE BEGIN USART1_MspInit 1 */
|
||||
|
||||
/* USER CODE END USART1_MspInit 1 */
|
||||
}
|
||||
}
|
||||
|
||||
void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle)
|
||||
{
|
||||
|
||||
if(uartHandle->Instance==USART1)
|
||||
{
|
||||
/* USER CODE BEGIN USART1_MspDeInit 0 */
|
||||
|
||||
/* USER CODE END USART1_MspDeInit 0 */
|
||||
/* Peripheral clock disable */
|
||||
__HAL_RCC_USART1_CLK_DISABLE();
|
||||
|
||||
/**USART1 GPIO Configuration
|
||||
PB14 ------> USART1_TX
|
||||
PB15 ------> USART1_RX
|
||||
*/
|
||||
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_14|GPIO_PIN_15);
|
||||
|
||||
/* USART1 interrupt Deinit */
|
||||
HAL_NVIC_DisableIRQ(USART1_IRQn);
|
||||
/* USER CODE BEGIN USART1_MspDeInit 1 */
|
||||
|
||||
/* USER CODE END USART1_MspDeInit 1 */
|
||||
}
|
||||
}
|
||||
|
||||
/* USER CODE BEGIN 1 */
|
||||
|
||||
/* USER CODE END 1 */
|
|
@ -83,7 +83,7 @@ ProjectManager.AskForMigrate=true
|
|||
ProjectManager.BackupPrevious=false
|
||||
ProjectManager.CompilerOptimize=6
|
||||
ProjectManager.ComputerToolchain=false
|
||||
ProjectManager.CoupleFile=false
|
||||
ProjectManager.CoupleFile=true
|
||||
ProjectManager.CustomerFirmwarePackage=
|
||||
ProjectManager.DefaultFWLocation=true
|
||||
ProjectManager.DeletePrevious=true
|
||||
|
|
|
@ -219,7 +219,7 @@ void Matrix3Mult(double a[][3],double b[][3],double c[][3])
|
|||
*@note:
|
||||
*@warning:
|
||||
*/
|
||||
void Matrix4Mult(float a[][4], float b[][4], float c[][4])
|
||||
void Matrix4Mult(double a[][4], double b[][4], double c[][4])
|
||||
{
|
||||
int i;
|
||||
int j;
|
||||
|
|
|
@ -128,7 +128,7 @@ extern "C" {
|
|||
*@note:
|
||||
*@warning:
|
||||
*/
|
||||
void Matrix4Mult(float a[][4], float b[][4], float c[][4]);
|
||||
void Matrix4Mult(double a[][4], double b[][4], double c[][4]);
|
||||
|
||||
/**
|
||||
*@brief Description: Calculate 3 x 3 matrix multiply a value.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "RobotAlgorithmModule.h"
|
||||
#include "arm_math.h"
|
||||
Link_Parameter_s Link[4];
|
||||
float Total_Transformation_Matrix[4][4],Process1_Transformation_Matrix[4][4],Process2_Transformation_Matrix[4][4];
|
||||
double Total_Transformation_Matrix[4][4],Process1_Transformation_Matrix[4][4],Process2_Transformation_Matrix[4][4];
|
||||
void Kinematic_Init()
|
||||
{
|
||||
Link[0].length = LINK_LENGTH1;
|
||||
|
@ -25,22 +25,20 @@ void Kinematic_Init()
|
|||
Link[3].twist = LINK_TWIST4;
|
||||
}
|
||||
|
||||
void Kinematic_Calculate()
|
||||
{
|
||||
void Kinematic_Calculate() {
|
||||
//计算通用其次变换矩阵
|
||||
for(int num=0;num++;num<4)
|
||||
{
|
||||
Link[num].transformation_matrix[0][0]=cosf(Link[num].angle);
|
||||
Link[num].transformation_matrix[0][1]=-sinf(Link[num].angle)*cosf(Link[num].twist);
|
||||
Link[num].transformation_matrix[0][2]=sinf(Link[num].angle)*sinf(Link[num].twist);
|
||||
Link[num].transformation_matrix[0][3]=Link[num].length*cosf(Link[num].angle);
|
||||
Link[num].transformation_matrix[1][0]=sinf(Link[num].angle);
|
||||
Link[num].transformation_matrix[1][1]=cosf(Link[num].angle)*cosf(Link[num].twist);
|
||||
Link[num].transformation_matrix[1][2]=-cosf(Link[num].angle)*sinf(Link[num].twist);
|
||||
Link[num].transformation_matrix[1][3]=Link[num].length*sinf(Link[num].angle);
|
||||
for (int num = 0; num++; num < 4) {
|
||||
Link[num].transformation_matrix[0][0] = cos(Link[num].angle);
|
||||
Link[num].transformation_matrix[0][1] = -sin(Link[num].angle) * cos(Link[num].twist);
|
||||
Link[num].transformation_matrix[0][2] = sin(Link[num].angle) * sin(Link[num].twist);
|
||||
Link[num].transformation_matrix[0][3] = Link[num].length * cos(Link[num].angle);
|
||||
Link[num].transformation_matrix[1][0] = sin(Link[num].angle);
|
||||
Link[num].transformation_matrix[1][1] = cos(Link[num].angle) * cos(Link[num].twist);
|
||||
Link[num].transformation_matrix[1][2] = -cos(Link[num].angle) * sin(Link[num].twist);
|
||||
Link[num].transformation_matrix[1][3] = Link[num].length * sin(Link[num].angle);
|
||||
Link[num].transformation_matrix[2][0] = 0;
|
||||
Link[num].transformation_matrix[2][1]=sinf(Link[num].twist);
|
||||
Link[num].transformation_matrix[2][2]=cosf(Link[num].twist);
|
||||
Link[num].transformation_matrix[2][1] = sin(Link[num].twist);
|
||||
Link[num].transformation_matrix[2][2] = cos(Link[num].twist);
|
||||
Link[num].transformation_matrix[2][3] = Link[num].offset;
|
||||
Link[num].transformation_matrix[3][0] = 0;
|
||||
Link[num].transformation_matrix[3][1] = 0;
|
||||
|
@ -56,26 +54,32 @@ void Kinematic_Calculate()
|
|||
|
||||
//逆运动学
|
||||
//关节1
|
||||
float m=Total_Transformation_Matrix[1][3]-Link[3].length*Total_Transformation_Matrix[1][0]-Link[3].offset*Total_Transformation_Matrix[1][2];
|
||||
float n=Total_Transformation_Matrix[0][3]-Link[3].length*Total_Transformation_Matrix[0][0]-Link[3].offset*Total_Transformation_Matrix[0][2];
|
||||
//TODO:多解,需要一个判断位来选择解
|
||||
Link[0].angle_set = atan2f(m,n)-atan2f(Link[1].offset, sqrtf(m*m+n*n-Link[2].offset*Link[2].offset));
|
||||
Link[0].angle_set = atan2f(m,n)-atan2f(Link[1].offset, -sqrtf(m*m+n*n-Link[2].offset*Link[2].offset));
|
||||
double m = Total_Transformation_Matrix[1][3] - Link[3].length * Total_Transformation_Matrix[1][0] -
|
||||
Link[3].offset * Total_Transformation_Matrix[1][2];
|
||||
double n = Total_Transformation_Matrix[0][3] - Link[3].length * Total_Transformation_Matrix[0][0] -
|
||||
Link[3].offset * Total_Transformation_Matrix[0][2];
|
||||
|
||||
Link[0].angle_set = atan2(m, n) - atan2(Link[1].offset, 0);
|
||||
|
||||
|
||||
//关节3
|
||||
//TODO:多解问题
|
||||
Link[2].angle_set = acosf(Total_Transformation_Matrix[1][2]*cosf(Link[0].angle_set)-Total_Transformation_Matrix[0][2]*sinf(Link[0].angle));
|
||||
Link[2].angle_set = -acosf(Total_Transformation_Matrix[1][2]*cosf(Link[0].angle_set)-Total_Transformation_Matrix[0][2]*sinf(Link[0].angle));
|
||||
|
||||
Link[2].angle_set = acos(Total_Transformation_Matrix[1][2] * cos(Link[0].angle_set) -
|
||||
Total_Transformation_Matrix[0][2] * sin(Link[0].angle));
|
||||
// Link[2].angle_set = -acos(Total_Transformation_Matrix[1][2] * cos(Link[0].angle_set) -
|
||||
// Total_Transformation_Matrix[0][2] * sin(Link[0].angle));
|
||||
|
||||
//关节4
|
||||
double mm = -Total_Transformation_Matrix[1][2];
|
||||
double nn = Total_Transformation_Matrix[0][2];
|
||||
// Link[3].angle_set = atan2(mm, nn) - atan2(cos(Link[1].angle_set), sqrt(mm * mm + nn * nn -
|
||||
// cos(Link[1].angle_set) *
|
||||
// cos(Link[1].angle_set)));
|
||||
Link[3].angle_set = atan2(mm, nn) - atan2(sin(Link[1].angle_set), -sqrt(mm * mm + nn * nn -
|
||||
cos(Link[1].angle_set) *
|
||||
cos(Link[1].angle_set)));
|
||||
|
||||
//关节2
|
||||
Link[1].angle_set = asin(Total_Transformation_Matrix[2][2] / sin(Link[2].angle_set));
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -6,16 +6,16 @@
|
|||
#define CUSTOMER_CONTROLLER_KINEMATICS_H
|
||||
|
||||
//连杆偏移
|
||||
#define LINK_OFFSET1 76
|
||||
#define LINK_OFFSET2 116
|
||||
#define LINK_OFFSET1 0.076
|
||||
#define LINK_OFFSET2 0.116
|
||||
#define LINK_OFFSET3 0
|
||||
#define LINK_OFFSET4 0
|
||||
#define LINK_OFFSET4 0.1295
|
||||
|
||||
//连杆长度
|
||||
#define LINK_LENGTH1 0
|
||||
#define LINK_LENGTH2 0
|
||||
#define LINK_LENGTH3 0
|
||||
#define LINK_LENGTH4 36
|
||||
#define LINK_LENGTH4 0.036
|
||||
|
||||
//连杆扭角
|
||||
#define LINK_TWIST1 -1.570796
|
||||
|
@ -25,12 +25,12 @@
|
|||
|
||||
typedef struct
|
||||
{
|
||||
float offset; //d
|
||||
float length; //a
|
||||
float twist; //alpha
|
||||
float angle; //theta
|
||||
float angle_set;
|
||||
float transformation_matrix[4][4];
|
||||
double offset; //d
|
||||
double length; //a
|
||||
double twist; //alpha
|
||||
double angle; //theta
|
||||
double angle_set;
|
||||
double transformation_matrix[4][4];
|
||||
} Link_Parameter_s;
|
||||
|
||||
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
{
|
||||
"configurations" :
|
||||
[
|
||||
{
|
||||
"directories" :
|
||||
[
|
||||
{
|
||||
"build" : ".",
|
||||
"jsonFile" : "directory-.-d0094a50bb2071803777.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.26"
|
||||
},
|
||||
"projectIndex" : 0,
|
||||
"source" : ".",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"name" : "",
|
||||
"projects" :
|
||||
[
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
0
|
||||
],
|
||||
"name" : "Customer_controller",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"targets" :
|
||||
[
|
||||
{
|
||||
"directoryIndex" : 0,
|
||||
"id" : "Customer_controller.elf::@6890427a1f51a3e7e1df",
|
||||
"jsonFile" : "target-Customer_controller.elf-ce91f7862e88eb5381c0.json",
|
||||
"name" : "Customer_controller.elf",
|
||||
"projectIndex" : 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"kind" : "codemodel",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "D:/RM/@RM2025/Customer_controller/cmake-build-debug",
|
||||
"source" : "D:/RM/@RM2025/Customer_controller"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 5
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -115,8 +115,8 @@ events:
|
|||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644"
|
||||
binary: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644"
|
||||
source: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw"
|
||||
binary: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: ""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
|
@ -125,20 +125,20 @@ events:
|
|||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644
|
||||
Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw
|
||||
|
||||
Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_b1b10/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_b1b10.dir\\build.make CMakeFiles/cmTC_b1b10.dir/build
|
||||
mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644'
|
||||
Building C object CMakeFiles/cmTC_b1b10.dir/CMakeCCompilerABI.c.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c"
|
||||
Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_05906/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_05906.dir\\build.make CMakeFiles/cmTC_05906.dir/build
|
||||
mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw'
|
||||
Building C object CMakeFiles/cmTC_05906.dir/CMakeCCompilerABI.c.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c"
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe
|
||||
Target: arm-none-eabi
|
||||
Configured with: /mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 9-2020-q2-update' --with-multilib-list=rmprofile,aprofile
|
||||
Thread model: single
|
||||
gcc version 9.3.1 20200408 (release) (GNU Arm Embedded Toolchain 9-2020-q2-update)
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\cchU2bi4.s
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\cc80pcoE.s
|
||||
GNU C17 (GNU Arm Embedded Toolchain 9-2020-q2-update) version 9.3.1 20200408 (release) (arm-none-eabi)
|
||||
compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP
|
||||
|
||||
|
@ -159,18 +159,18 @@ events:
|
|||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
Compiler executable checksum: d18b46d535a7d663cef45eb261f67f75
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj C:\\Users\\24871\\AppData\\Local\\Temp\\cchU2bi4.s
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj C:\\Users\\24871\\AppData\\Local\\Temp\\cc80pcoE.s
|
||||
GNU assembler version 2.34.0 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 9-2020-q2-update) 2.34.0.20200428
|
||||
COMPILER_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/
|
||||
LIBRARY_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../arm-none-eabi/lib/
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
Linking C static library libcmTC_b1b10.a
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_b1b10.dir\\cmake_clean_target.cmake
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_b1b10.dir\\link.txt --verbose=1
|
||||
arm-none-eabi-ar qc libcmTC_b1b10.a CMakeFiles/cmTC_b1b10.dir/CMakeCCompilerABI.c.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_b1b10.a
|
||||
mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644'
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
Linking C static library libcmTC_05906.a
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_05906.dir\\cmake_clean_target.cmake
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_05906.dir\\link.txt --verbose=1
|
||||
arm-none-eabi-ar qc libcmTC_05906.a CMakeFiles/cmTC_05906.dir/CMakeCCompilerABI.c.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_05906.a
|
||||
mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw'
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
|
@ -202,20 +202,20 @@ events:
|
|||
message: |
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(arm-none-eabi-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
ignore line: [Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644]
|
||||
ignore line: [Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_b1b10/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_b1b10.dir\\build.make CMakeFiles/cmTC_b1b10.dir/build]
|
||||
ignore line: [mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644']
|
||||
ignore line: [Building C object CMakeFiles/cmTC_b1b10.dir/CMakeCCompilerABI.c.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c"]
|
||||
ignore line: [Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_05906/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_05906.dir\\build.make CMakeFiles/cmTC_05906.dir/build]
|
||||
ignore line: [mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw']
|
||||
ignore line: [Building C object CMakeFiles/cmTC_05906.dir/CMakeCCompilerABI.c.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c"]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-gcc.exe]
|
||||
ignore line: [Target: arm-none-eabi]
|
||||
ignore line: [Configured with: /mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 9-2020-q2-update' --with-multilib-list=rmprofile,aprofile]
|
||||
ignore line: [Thread model: single]
|
||||
ignore line: [gcc version 9.3.1 20200408 (release) (GNU Arm Embedded Toolchain 9-2020-q2-update) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\cchU2bi4.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\cc80pcoE.s]
|
||||
ignore line: [GNU C17 (GNU Arm Embedded Toolchain 9-2020-q2-update) version 9.3.1 20200408 (release) (arm-none-eabi)]
|
||||
ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP]
|
||||
ignore line: []
|
||||
|
@ -236,8 +236,8 @@ events:
|
|||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [Compiler executable checksum: d18b46d535a7d663cef45eb261f67f75]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj C:\\Users\\24871\\AppData\\Local\\Temp\\cchU2bi4.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj C:\\Users\\24871\\AppData\\Local\\Temp\\cc80pcoE.s]
|
||||
ignore line: [GNU assembler version 2.34.0 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 9-2020-q2-update) 2.34.0.20200428]
|
||||
ignore line: [COMPILER_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/]
|
||||
|
@ -246,13 +246,13 @@ events:
|
|||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../arm-none-eabi/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_b1b10.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [Linking C static library libcmTC_b1b10.a]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_b1b10.dir\\cmake_clean_target.cmake]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_b1b10.dir\\link.txt --verbose=1]
|
||||
ignore line: [arm-none-eabi-ar qc libcmTC_b1b10.a CMakeFiles/cmTC_b1b10.dir/CMakeCCompilerABI.c.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_b1b10.a]
|
||||
ignore line: [mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-s24644']
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_05906.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [Linking C static library libcmTC_05906.a]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_05906.dir\\cmake_clean_target.cmake]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_05906.dir\\link.txt --verbose=1]
|
||||
ignore line: [arm-none-eabi-ar qc libcmTC_05906.a CMakeFiles/cmTC_05906.dir/CMakeCCompilerABI.c.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_05906.a]
|
||||
ignore line: [mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r57ncw']
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
implicit libs: []
|
||||
|
@ -270,8 +270,8 @@ events:
|
|||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7"
|
||||
binary: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7"
|
||||
source: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m"
|
||||
binary: "D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: ""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
|
@ -280,20 +280,20 @@ events:
|
|||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7
|
||||
Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m
|
||||
|
||||
Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_11060/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_11060.dir\\build.make CMakeFiles/cmTC_11060.dir/build
|
||||
mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7'
|
||||
Building CXX object CMakeFiles/cmTC_11060.dir/CMakeCXXCompilerABI.cpp.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp"
|
||||
Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_d6cff/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_d6cff.dir\\build.make CMakeFiles/cmTC_d6cff.dir/build
|
||||
mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m'
|
||||
Building CXX object CMakeFiles/cmTC_d6cff.dir/CMakeCXXCompilerABI.cpp.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp"
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe
|
||||
Target: arm-none-eabi
|
||||
Configured with: /mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 9-2020-q2-update' --with-multilib-list=rmprofile,aprofile
|
||||
Thread model: single
|
||||
gcc version 9.3.1 20200408 (release) (GNU Arm Embedded Toolchain 9-2020-q2-update)
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1plus.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\ccQEYLad.s
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1plus.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\ccO1daZG.s
|
||||
GNU C++14 (GNU Arm Embedded Toolchain 9-2020-q2-update) version 9.3.1 20200408 (release) (arm-none-eabi)
|
||||
compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP
|
||||
|
||||
|
@ -320,18 +320,18 @@ events:
|
|||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
Compiler executable checksum: 7a1ab17ae8404f635d46188cccacd8be
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\24871\\AppData\\Local\\Temp\\ccQEYLad.s
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\24871\\AppData\\Local\\Temp\\ccO1daZG.s
|
||||
GNU assembler version 2.34.0 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 9-2020-q2-update) 2.34.0.20200428
|
||||
COMPILER_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/
|
||||
LIBRARY_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/;c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../arm-none-eabi/lib/
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
Linking CXX static library libcmTC_11060.a
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_11060.dir\\cmake_clean_target.cmake
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_11060.dir\\link.txt --verbose=1
|
||||
arm-none-eabi-ar qc libcmTC_11060.a CMakeFiles/cmTC_11060.dir/CMakeCXXCompilerABI.cpp.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_11060.a
|
||||
mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7'
|
||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t'
|
||||
Linking CXX static library libcmTC_d6cff.a
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_d6cff.dir\\cmake_clean_target.cmake
|
||||
"C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_d6cff.dir\\link.txt --verbose=1
|
||||
arm-none-eabi-ar qc libcmTC_d6cff.a CMakeFiles/cmTC_d6cff.dir/CMakeCXXCompilerABI.cpp.obj
|
||||
C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_d6cff.a
|
||||
mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m'
|
||||
|
||||
exitCode: 0
|
||||
-
|
||||
|
@ -369,20 +369,20 @@ events:
|
|||
message: |
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(arm-none-eabi-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
ignore line: [Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7]
|
||||
ignore line: [Change Dir: D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_11060/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_11060.dir\\build.make CMakeFiles/cmTC_11060.dir/build]
|
||||
ignore line: [mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7']
|
||||
ignore line: [Building CXX object CMakeFiles/cmTC_11060.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp"]
|
||||
ignore line: [Run Build Command(s):C:/Program Files/JetBrains/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_d6cff/fast && C:/PROGRA~1/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_d6cff.dir\\build.make CMakeFiles/cmTC_d6cff.dir/build]
|
||||
ignore line: [mingw32-make[1]: Entering directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m']
|
||||
ignore line: [Building CXX object CMakeFiles/cmTC_d6cff.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp"]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-g++.exe]
|
||||
ignore line: [Target: arm-none-eabi]
|
||||
ignore line: [Configured with: /mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-9-pipeline/jenkins-GCC-9-pipeline-200_20200521_1590053374/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 9-2020-q2-update' --with-multilib-list=rmprofile,aprofile]
|
||||
ignore line: [Thread model: single]
|
||||
ignore line: [gcc version 9.3.1 20200408 (release) (GNU Arm Embedded Toolchain 9-2020-q2-update) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1plus.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\ccQEYLad.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/cc1plus.exe -quiet -v -iprefix c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../lib/gcc/arm-none-eabi/9.3.1/ -isysroot c:\\mounriver\\mounriver_studio\\toolchain\\arm-none-eabi-gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -march=armv4t -auxbase-strip CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\24871\\AppData\\Local\\Temp\\ccO1daZG.s]
|
||||
ignore line: [GNU C++14 (GNU Arm Embedded Toolchain 9-2020-q2-update) version 9.3.1 20200408 (release) (arm-none-eabi)]
|
||||
ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP]
|
||||
ignore line: []
|
||||
|
@ -409,8 +409,8 @@ events:
|
|||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [Compiler executable checksum: 7a1ab17ae8404f635d46188cccacd8be]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\24871\\AppData\\Local\\Temp\\ccQEYLad.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [ c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\24871\\AppData\\Local\\Temp\\ccO1daZG.s]
|
||||
ignore line: [GNU assembler version 2.34.0 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 9-2020-q2-update) 2.34.0.20200428]
|
||||
ignore line: [COMPILER_PATH=c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/]
|
||||
|
@ -419,13 +419,13 @@ events:
|
|||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/]
|
||||
ignore line: [c:/mounriver/mounriver_studio/toolchain/arm-none-eabi-gcc/bin/../arm-none-eabi/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_11060.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [Linking CXX static library libcmTC_11060.a]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_11060.dir\\cmake_clean_target.cmake]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_11060.dir\\link.txt --verbose=1]
|
||||
ignore line: [arm-none-eabi-ar qc libcmTC_11060.a CMakeFiles/cmTC_11060.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_11060.a]
|
||||
ignore line: [mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-tn45e7']
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_d6cff.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-march=armv4t']
|
||||
ignore line: [Linking CXX static library libcmTC_d6cff.a]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_d6cff.dir\\cmake_clean_target.cmake]
|
||||
ignore line: ["C:\\Program Files\\JetBrains\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_d6cff.dir\\link.txt --verbose=1]
|
||||
ignore line: [arm-none-eabi-ar qc libcmTC_d6cff.a CMakeFiles/cmTC_d6cff.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||
ignore line: [C:\\MounRiver\\MounRiver_Studio\\toolchain\\arm-none-eabi-gcc\\bin\\arm-none-eabi-ranlib.exe libcmTC_d6cff.a]
|
||||
ignore line: [mingw32-make[1]: Leaving directory 'D:/RM/@RM2025/Customer_controller/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9yk01m']
|
||||
ignore line: []
|
||||
ignore line: []
|
||||
implicit libs: []
|
||||
|
|
|
@ -28,16 +28,21 @@ set(CMAKE_ASM_TARGET_INCLUDE_PATH
|
|||
"D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include"
|
||||
"D:/RM/@RM2025/Customer_controller/Middlewares/ST/ARM/DSP/Inc"
|
||||
"D:/RM/@RM2025/Customer_controller/USER"
|
||||
"D:/RM/@RM2025/Customer_controller/BSP"
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"D:/RM/@RM2025/Customer_controller/BSP/can_bsp.c" "CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/fdcan.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/gpio.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/main.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/stm32h7xx_hal_msp.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/stm32h7xx_it.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/syscalls.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/sysmem.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/system_stm32h7xx.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Core/Src/usart.c" "CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj.d"
|
||||
"D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj" "gcc" "CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj.d"
|
||||
|
|
|
@ -68,10 +68,52 @@ include CMakeFiles/Customer_controller.elf.dir/progress.make
|
|||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj: D:/RM/@RM2025/Customer_controller/BSP/can_bsp.c
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj -MF CMakeFiles\Customer_controller.elf.dir\BSP\can_bsp.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\BSP\can_bsp.c.obj -c D:\RM\@RM2025\Customer_controller\BSP\can_bsp.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.i"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\RM\@RM2025\Customer_controller\BSP\can_bsp.c > CMakeFiles\Customer_controller.elf.dir\BSP\can_bsp.c.i
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.s"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\RM\@RM2025\Customer_controller\BSP\can_bsp.c -o CMakeFiles\Customer_controller.elf.dir\BSP\can_bsp.c.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/fdcan.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\fdcan.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\fdcan.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\fdcan.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.i"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\RM\@RM2025\Customer_controller\Core\Src\fdcan.c > CMakeFiles\Customer_controller.elf.dir\Core\Src\fdcan.c.i
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.s"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\RM\@RM2025\Customer_controller\Core\Src\fdcan.c -o CMakeFiles\Customer_controller.elf.dir\Core\Src\fdcan.c.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/gpio.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\gpio.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\gpio.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\gpio.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.i"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\RM\@RM2025\Customer_controller\Core\Src\gpio.c > CMakeFiles\Customer_controller.elf.dir\Core\Src\gpio.c.i
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.s"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\RM\@RM2025\Customer_controller\Core\Src\gpio.c -o CMakeFiles\Customer_controller.elf.dir\Core\Src\gpio.c.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/main.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\main.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\main.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\main.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.i: cmake_force
|
||||
|
@ -85,7 +127,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.s: cmake_force
|
|||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/stm32h7xx_hal_msp.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\stm32h7xx_hal_msp.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\stm32h7xx_hal_msp.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\stm32h7xx_hal_msp.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.i: cmake_force
|
||||
|
@ -99,7 +141,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.s: cmake_for
|
|||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/stm32h7xx_it.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\stm32h7xx_it.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\stm32h7xx_it.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\stm32h7xx_it.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.i: cmake_force
|
||||
|
@ -113,7 +155,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.s: cmake_force
|
|||
CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/syscalls.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\syscalls.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\syscalls.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\syscalls.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.i: cmake_force
|
||||
|
@ -127,7 +169,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.s: cmake_force
|
|||
CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/sysmem.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\sysmem.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\sysmem.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\sysmem.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.i: cmake_force
|
||||
|
@ -141,7 +183,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.s: cmake_force
|
|||
CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/system_stm32h7xx.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\system_stm32h7xx.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\system_stm32h7xx.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\system_stm32h7xx.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.i: cmake_force
|
||||
|
@ -152,9 +194,23 @@ CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.s: cmake_forc
|
|||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.s"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\RM\@RM2025\Customer_controller\Core\Src\system_stm32h7xx.c -o CMakeFiles\Customer_controller.elf.dir\Core\Src\system_stm32h7xx.c.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/usart.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Core\Src\usart.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Core\Src\usart.c.obj -c D:\RM\@RM2025\Customer_controller\Core\Src\usart.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.i"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\RM\@RM2025\Customer_controller\Core\Src\usart.c > CMakeFiles\Customer_controller.elf.dir\Core\Src\usart.c.i
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.s"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\RM\@RM2025\Customer_controller\Core\Src\usart.c -o CMakeFiles\Customer_controller.elf.dir\Core\Src\usart.c.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj: D:/RM/@RM2025/Customer_controller/Core/Startup/startup_stm32h723vgtx.s
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building ASM object CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building ASM object CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles\Customer_controller.elf.dir\Core\Startup\startup_stm32h723vgtx.s.obj -c D:\RM\@RM2025\Customer_controller\Core\Startup\startup_stm32h723vgtx.s
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.i: cmake_force
|
||||
|
@ -168,7 +224,7 @@ CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.s: c
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.i: cmake_force
|
||||
|
@ -182,7 +238,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_cortex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_cortex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_cortex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.i: cmake_force
|
||||
|
@ -196,7 +252,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.i: cmake_force
|
||||
|
@ -210,7 +266,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_dma_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.i: cmake_force
|
||||
|
@ -224,7 +280,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_exti.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_exti.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_exti.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.i: cmake_force
|
||||
|
@ -238,7 +294,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_fdcan.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_fdcan.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_fdcan.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.i: cmake_force
|
||||
|
@ -252,7 +308,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.i: cmake_force
|
||||
|
@ -266,7 +322,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_flash_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.i: cmake_force
|
||||
|
@ -280,7 +336,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_gpio.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_gpio.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_gpio.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.i: cmake_force
|
||||
|
@ -294,7 +350,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_hsem.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_hsem.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_hsem.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.i: cmake_force
|
||||
|
@ -308,7 +364,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.i: cmake_force
|
||||
|
@ -322,7 +378,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_i2c_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.i: cmake_force
|
||||
|
@ -336,7 +392,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_mdma.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_mdma.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_mdma.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.i: cmake_force
|
||||
|
@ -350,7 +406,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.i: cmake_force
|
||||
|
@ -364,7 +420,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_pwr_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.i: cmake_force
|
||||
|
@ -378,7 +434,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.i: cmake_force
|
||||
|
@ -392,7 +448,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_rcc_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.i: cmake_force
|
||||
|
@ -406,7 +462,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.i: cmake_force
|
||||
|
@ -420,7 +476,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_tim_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.i: cmake_force
|
||||
|
@ -434,7 +490,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.i: cmake_force
|
||||
|
@ -448,7 +504,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj: D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj -MF CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart_ex.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart_ex.c.obj -c D:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Src\stm32h7xx_hal_uart_ex.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.i: cmake_force
|
||||
|
@ -462,7 +518,7 @@ CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7x
|
|||
CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj: D:/RM/@RM2025/Customer_controller/USER/RobotAlgorithmModule.c
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj -MF CMakeFiles\Customer_controller.elf.dir\USER\RobotAlgorithmModule.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\USER\RobotAlgorithmModule.c.obj -c D:\RM\@RM2025\Customer_controller\USER\RobotAlgorithmModule.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.i: cmake_force
|
||||
|
@ -476,7 +532,7 @@ CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.s: cmake_forc
|
|||
CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj: CMakeFiles/Customer_controller.elf.dir/flags.make
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj: D:/RM/@RM2025/Customer_controller/USER/kinematics.c
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj: CMakeFiles/Customer_controller.elf.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj"
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj -MF CMakeFiles\Customer_controller.elf.dir\USER\kinematics.c.obj.d -o CMakeFiles\Customer_controller.elf.dir\USER\kinematics.c.obj -c D:\RM\@RM2025\Customer_controller\USER\kinematics.c
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.i: cmake_force
|
||||
|
@ -489,12 +545,16 @@ CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.s: cmake_force
|
|||
|
||||
# Object files for target Customer_controller.elf
|
||||
Customer_controller_elf_OBJECTS = \
|
||||
"CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj" \
|
||||
"CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj" \
|
||||
|
@ -523,12 +583,16 @@ Customer_controller_elf_OBJECTS = \
|
|||
# External object files for target Customer_controller.elf
|
||||
Customer_controller_elf_EXTERNAL_OBJECTS =
|
||||
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj
|
||||
|
@ -555,7 +619,7 @@ Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgori
|
|||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/build.make
|
||||
Customer_controller.elf: CMakeFiles/Customer_controller.elf.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Linking C executable Customer_controller.elf"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Linking C executable Customer_controller.elf"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\Customer_controller.elf.dir\link.txt --verbose=$(VERBOSE)
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Building D:/RM/@RM2025/Customer_controller/cmake-build-debug/Customer_controller.hex"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Building D:/RM/@RM2025/Customer_controller/cmake-build-debug/Customer_controller.bin"
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj"
|
||||
|
@ -11,6 +17,8 @@ file(REMOVE_RECURSE
|
|||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj.d"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj"
|
||||
"CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj.d"
|
||||
|
|
|
@ -1,2 +1,279 @@
|
|||
# Empty compiler generated dependencies file for Customer_controller.elf.
|
||||
# This may be replaced when dependencies are built.
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.26
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj: D:/RM/@RM2025/Customer_controller/BSP/can_bsp.c \
|
||||
D:/RM/@RM2025/Customer_controller/BSP/can_bsp.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/main.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/stm32h7xx_hal_conf.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h723xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/core_cm7.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_default_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/features.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_newlib_version.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_intsup.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_stdint.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_version.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stddef.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/math.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/reent.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/newlib.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/config.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/ieeefp.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/lock.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/cdefs.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/fdcan.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/main.h
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/fdcan.c \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/fdcan.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/main.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/stm32h7xx_hal_conf.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h723xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/core_cm7.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_default_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/features.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_newlib_version.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_intsup.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_stdint.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_version.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stddef.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/math.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/reent.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/newlib.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/config.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/ieeefp.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/lock.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/cdefs.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj: D:/RM/@RM2025/Customer_controller/Core/Src/gpio.c \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/gpio.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/main.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/stm32h7xx_hal_conf.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h723xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/core_cm7.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/stdint.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_default_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/features.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_newlib_version.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_intsup.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_stdint.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_version.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_compiler.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/mpu_armv7.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stddef.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/math.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/reent.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/newlib.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/config.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/ieeefp.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_types.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/lock.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/cdefs.h \
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h \
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h
|
||||
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/lock.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/mpu_armv7.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/BSP/can_bsp.c:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/BSP/can_bsp.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_intsup.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/main.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_stdint.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/stm32h7xx_hal_conf.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h723xx.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/core_cm7.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/_types.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/config.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stdint.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/stdint.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/reent.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_default_types.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/newlib.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_version.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/features.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_newlib_version.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/_types.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/lib/gcc/arm-none-eabi/9.3.1/include/stddef.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/math.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/_ansi.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/machine/ieeefp.h:
|
||||
|
||||
C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/arm-none-eabi/include/sys/cdefs.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/gpio.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Inc/fdcan.h:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Src/fdcan.c:
|
||||
|
||||
D:/RM/@RM2025/Customer_controller/Core/Src/gpio.c:
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
# Empty dependencies file for Customer_controller.elf.
|
||||
# This may be replaced when dependencies are built.
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "MinGW Makefiles" Generator, CMake Version 3.26
|
||||
|
||||
CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj: \
|
||||
D:/RM/@RM2025/Customer_controller/Core/Startup/startup_stm32h723vgtx.s
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
# compile C with C:/MounRiver/MounRiver_Studio/toolchain/arm-none-eabi-gcc/bin/arm-none-eabi-gcc.exe
|
||||
ASM_DEFINES = -DDEBUG -DSTM32H723xx -DUSE_HAL_DRIVER
|
||||
|
||||
ASM_INCLUDES = -ID:\RM\@RM2025\Customer_controller\Core\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Device\ST\STM32H7xx\Include -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Include -ID:\RM\@RM2025\Customer_controller\Middlewares\ST\ARM\DSP\Inc -ID:\RM\@RM2025\Customer_controller\USER
|
||||
ASM_INCLUDES = -ID:\RM\@RM2025\Customer_controller\Core\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Device\ST\STM32H7xx\Include -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Include -ID:\RM\@RM2025\Customer_controller\Middlewares\ST\ARM\DSP\Inc -ID:\RM\@RM2025\Customer_controller\USER -ID:\RM\@RM2025\Customer_controller\BSP
|
||||
|
||||
ASM_FLAGS = -mcpu=cortex-m7 -mthumb -mthumb-interwork -ffunction-sections -fdata-sections -fno-common -fmessage-length=0 -x assembler-with-cpp -Og -g
|
||||
|
||||
C_DEFINES = -DDEBUG -DSTM32H723xx -DUSE_HAL_DRIVER
|
||||
|
||||
C_INCLUDES = -ID:\RM\@RM2025\Customer_controller\Core\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Device\ST\STM32H7xx\Include -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Include -ID:\RM\@RM2025\Customer_controller\Middlewares\ST\ARM\DSP\Inc -ID:\RM\@RM2025\Customer_controller\USER
|
||||
C_INCLUDES = -ID:\RM\@RM2025\Customer_controller\Core\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc -ID:\RM\@RM2025\Customer_controller\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Device\ST\STM32H7xx\Include -ID:\RM\@RM2025\Customer_controller\Drivers\CMSIS\Include -ID:\RM\@RM2025\Customer_controller\Middlewares\ST\ARM\DSP\Inc -ID:\RM\@RM2025\Customer_controller\USER -ID:\RM\@RM2025\Customer_controller\BSP
|
||||
|
||||
C_FLAGS = -std=gnu11 -fdiagnostics-color=always -mcpu=cortex-m7 -mthumb -mthumb-interwork -ffunction-sections -fdata-sections -fno-common -fmessage-length=0 -Og -g
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe -Wl,-gc-sections,--print-memory-usage,-Map=D:/RM/@RM2025/Customer_controller/cmake-build-debug/Customer_controller.map -mcpu=cortex-m7 -mthumb -mthumb-interwork -T D:/RM/@RM2025/Customer_controller/STM32H723VGTX_FLASH.ld CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj -o Customer_controller.elf
|
||||
C:\MounRiver\MounRiver_Studio\toolchain\arm-none-eabi-gcc\bin\arm-none-eabi-gcc.exe -Wl,-gc-sections,--print-memory-usage,-Map=D:/RM/@RM2025/Customer_controller/cmake-build-debug/Customer_controller.map -mcpu=cortex-m7 -mthumb -mthumb-interwork -T D:/RM/@RM2025/Customer_controller/STM32H723VGTX_FLASH.ld CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/main.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_hal_msp.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/stm32h7xx_it.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/syscalls.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/sysmem.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj CMakeFiles/Customer_controller.elf.dir/Core/Startup/startup_stm32h723vgtx.s.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_fdcan.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c.obj CMakeFiles/Customer_controller.elf.dir/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c.obj CMakeFiles/Customer_controller.elf.dir/USER/RobotAlgorithmModule.c.obj CMakeFiles/Customer_controller.elf.dir/USER/kinematics.c.obj -o Customer_controller.elf
|
||||
|
|
|
@ -29,4 +29,8 @@ CMAKE_PROGRESS_28 = 28
|
|||
CMAKE_PROGRESS_29 = 29
|
||||
CMAKE_PROGRESS_30 = 30
|
||||
CMAKE_PROGRESS_31 = 31
|
||||
CMAKE_PROGRESS_32 = 32
|
||||
CMAKE_PROGRESS_33 = 33
|
||||
CMAKE_PROGRESS_34 = 34
|
||||
CMAKE_PROGRESS_35 = 35
|
||||
|
||||
|
|
|
@ -80,12 +80,12 @@ clean: CMakeFiles/Customer_controller.elf.dir/clean
|
|||
CMakeFiles/Customer_controller.elf.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 "Built target Customer_controller.elf"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 "Built target Customer_controller.elf"
|
||||
.PHONY : CMakeFiles/Customer_controller.elf.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/Customer_controller.elf.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles 31
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles 35
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 CMakeFiles/Customer_controller.elf.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start D:\RM\@RM2025\Customer_controller\cmake-build-debug\CMakeFiles 0
|
||||
.PHONY : CMakeFiles/Customer_controller.elf.dir/rule
|
||||
|
|
|
@ -1 +1 @@
|
|||
31
|
||||
35
|
||||
|
|
Binary file not shown.
|
@ -34,6 +34,7 @@
|
|||
<Add directory="D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/Middlewares/ST/ARM/DSP/Inc"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/USER"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/BSP"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1/arm-none-eabi"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1/backward"/>
|
||||
|
@ -65,6 +66,7 @@
|
|||
<Add directory="D:/RM/@RM2025/Customer_controller/Drivers/CMSIS/Include"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/Middlewares/ST/ARM/DSP/Inc"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/USER"/>
|
||||
<Add directory="D:/RM/@RM2025/Customer_controller/BSP"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1/arm-none-eabi"/>
|
||||
<Add directory="c:\mounriver\mounriver_studio\toolchain\arm-none-eabi-gcc\bin\../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/include/c++/9.3.1/backward"/>
|
||||
|
@ -100,6 +102,18 @@
|
|||
</MakeCommands>
|
||||
</Target>
|
||||
</Build>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/BSP/can_bsp.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/BSP/can_bsp.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/fdcan.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/gpio.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/main.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
|
@ -109,9 +123,18 @@
|
|||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/stm32h7xx_it.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/usart.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Inc/usbd_conf.h">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Src/fdcan.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Src/gpio.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Src/main.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
|
@ -130,6 +153,9 @@
|
|||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Src/system_stm32h7xx.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Src/usart.c">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
<Unit filename="D:/RM/@RM2025/Customer_controller/Core/Startup/startup_stm32h723vgtx.s">
|
||||
<Option target="Customer_controller.elf"/>
|
||||
</Unit>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -128,6 +128,78 @@ Customer_controller.elf/fast:
|
|||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/build
|
||||
.PHONY : Customer_controller.elf/fast
|
||||
|
||||
BSP/can_bsp.obj: BSP/can_bsp.c.obj
|
||||
.PHONY : BSP/can_bsp.obj
|
||||
|
||||
# target to build an object file
|
||||
BSP/can_bsp.c.obj:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.obj
|
||||
.PHONY : BSP/can_bsp.c.obj
|
||||
|
||||
BSP/can_bsp.i: BSP/can_bsp.c.i
|
||||
.PHONY : BSP/can_bsp.i
|
||||
|
||||
# target to preprocess a source file
|
||||
BSP/can_bsp.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.i
|
||||
.PHONY : BSP/can_bsp.c.i
|
||||
|
||||
BSP/can_bsp.s: BSP/can_bsp.c.s
|
||||
.PHONY : BSP/can_bsp.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
BSP/can_bsp.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/BSP/can_bsp.c.s
|
||||
.PHONY : BSP/can_bsp.c.s
|
||||
|
||||
Core/Src/fdcan.obj: Core/Src/fdcan.c.obj
|
||||
.PHONY : Core/Src/fdcan.obj
|
||||
|
||||
# target to build an object file
|
||||
Core/Src/fdcan.c.obj:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.obj
|
||||
.PHONY : Core/Src/fdcan.c.obj
|
||||
|
||||
Core/Src/fdcan.i: Core/Src/fdcan.c.i
|
||||
.PHONY : Core/Src/fdcan.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Core/Src/fdcan.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.i
|
||||
.PHONY : Core/Src/fdcan.c.i
|
||||
|
||||
Core/Src/fdcan.s: Core/Src/fdcan.c.s
|
||||
.PHONY : Core/Src/fdcan.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Core/Src/fdcan.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/fdcan.c.s
|
||||
.PHONY : Core/Src/fdcan.c.s
|
||||
|
||||
Core/Src/gpio.obj: Core/Src/gpio.c.obj
|
||||
.PHONY : Core/Src/gpio.obj
|
||||
|
||||
# target to build an object file
|
||||
Core/Src/gpio.c.obj:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.obj
|
||||
.PHONY : Core/Src/gpio.c.obj
|
||||
|
||||
Core/Src/gpio.i: Core/Src/gpio.c.i
|
||||
.PHONY : Core/Src/gpio.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Core/Src/gpio.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.i
|
||||
.PHONY : Core/Src/gpio.c.i
|
||||
|
||||
Core/Src/gpio.s: Core/Src/gpio.c.s
|
||||
.PHONY : Core/Src/gpio.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Core/Src/gpio.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/gpio.c.s
|
||||
.PHONY : Core/Src/gpio.c.s
|
||||
|
||||
Core/Src/main.obj: Core/Src/main.c.obj
|
||||
.PHONY : Core/Src/main.obj
|
||||
|
||||
|
@ -272,6 +344,30 @@ Core/Src/system_stm32h7xx.c.s:
|
|||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/system_stm32h7xx.c.s
|
||||
.PHONY : Core/Src/system_stm32h7xx.c.s
|
||||
|
||||
Core/Src/usart.obj: Core/Src/usart.c.obj
|
||||
.PHONY : Core/Src/usart.obj
|
||||
|
||||
# target to build an object file
|
||||
Core/Src/usart.c.obj:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.obj
|
||||
.PHONY : Core/Src/usart.c.obj
|
||||
|
||||
Core/Src/usart.i: Core/Src/usart.c.i
|
||||
.PHONY : Core/Src/usart.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Core/Src/usart.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.i
|
||||
.PHONY : Core/Src/usart.c.i
|
||||
|
||||
Core/Src/usart.s: Core/Src/usart.c.s
|
||||
.PHONY : Core/Src/usart.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Core/Src/usart.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles\Customer_controller.elf.dir\build.make CMakeFiles/Customer_controller.elf.dir/Core/Src/usart.c.s
|
||||
.PHONY : Core/Src/usart.c.s
|
||||
|
||||
Core/Startup/startup_stm32h723vgtx.obj: Core/Startup/startup_stm32h723vgtx.s.obj
|
||||
.PHONY : Core/Startup/startup_stm32h723vgtx.obj
|
||||
|
||||
|
@ -841,6 +937,15 @@ help:
|
|||
@echo ... edit_cache
|
||||
@echo ... rebuild_cache
|
||||
@echo ... Customer_controller.elf
|
||||
@echo ... BSP/can_bsp.obj
|
||||
@echo ... BSP/can_bsp.i
|
||||
@echo ... BSP/can_bsp.s
|
||||
@echo ... Core/Src/fdcan.obj
|
||||
@echo ... Core/Src/fdcan.i
|
||||
@echo ... Core/Src/fdcan.s
|
||||
@echo ... Core/Src/gpio.obj
|
||||
@echo ... Core/Src/gpio.i
|
||||
@echo ... Core/Src/gpio.s
|
||||
@echo ... Core/Src/main.obj
|
||||
@echo ... Core/Src/main.i
|
||||
@echo ... Core/Src/main.s
|
||||
|
@ -859,6 +964,9 @@ help:
|
|||
@echo ... Core/Src/system_stm32h7xx.obj
|
||||
@echo ... Core/Src/system_stm32h7xx.i
|
||||
@echo ... Core/Src/system_stm32h7xx.s
|
||||
@echo ... Core/Src/usart.obj
|
||||
@echo ... Core/Src/usart.i
|
||||
@echo ... Core/Src/usart.s
|
||||
@echo ... Core/Startup/startup_stm32h723vgtx.obj
|
||||
@echo ... Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.obj
|
||||
@echo ... Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.i
|
||||
|
|
Loading…
Reference in New Issue