19 changed files with 648 additions and 137 deletions
-
3.vscode/settings.json
-
9README.md
-
30app/.mxproject
-
52app/Core/Inc/spi.h
-
4app/Core/Inc/stm32f4xx_hal_conf.h
-
3app/Core/Inc/tim.h
-
29app/Core/Src/gpio.c
-
36app/Core/Src/main.c
-
119app/Core/Src/spi.c
-
70app/Core/Src/tim.c
-
36app/MDK-ARM/app.uvguix.h_zha
-
88app/MDK-ARM/app.uvoptx
-
112app/MDK-ARM/app.uvprojx
-
133app/app.ioc
-
2dep/libtrinamic
-
35src/port.c
-
9src/port.h
-
10src/project_board.h
-
5src/umain.c
30
app/.mxproject
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,52 @@ |
|||
/* USER CODE BEGIN Header */ |
|||
/** |
|||
****************************************************************************** |
|||
* @file spi.h |
|||
* @brief This file contains all the function prototypes for |
|||
* the spi.c file |
|||
****************************************************************************** |
|||
* @attention |
|||
* |
|||
* Copyright (c) 2023 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 __SPI_H__ |
|||
#define __SPI_H__ |
|||
|
|||
#ifdef __cplusplus |
|||
extern "C" { |
|||
#endif |
|||
|
|||
/* Includes ------------------------------------------------------------------*/ |
|||
#include "main.h" |
|||
|
|||
/* USER CODE BEGIN Includes */ |
|||
|
|||
/* USER CODE END Includes */ |
|||
|
|||
extern SPI_HandleTypeDef hspi1; |
|||
|
|||
/* USER CODE BEGIN Private defines */ |
|||
|
|||
/* USER CODE END Private defines */ |
|||
|
|||
void MX_SPI1_Init(void); |
|||
|
|||
/* USER CODE BEGIN Prototypes */ |
|||
|
|||
/* USER CODE END Prototypes */ |
|||
|
|||
#ifdef __cplusplus |
|||
} |
|||
#endif |
|||
|
|||
#endif /* __SPI_H__ */ |
|||
|
@ -0,0 +1,119 @@ |
|||
/* USER CODE BEGIN Header */ |
|||
/** |
|||
****************************************************************************** |
|||
* @file spi.c |
|||
* @brief This file provides code for the configuration |
|||
* of the SPI instances. |
|||
****************************************************************************** |
|||
* @attention |
|||
* |
|||
* Copyright (c) 2023 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 "spi.h" |
|||
|
|||
/* USER CODE BEGIN 0 */ |
|||
|
|||
/* USER CODE END 0 */ |
|||
|
|||
SPI_HandleTypeDef hspi1; |
|||
|
|||
/* SPI1 init function */ |
|||
void MX_SPI1_Init(void) |
|||
{ |
|||
|
|||
/* USER CODE BEGIN SPI1_Init 0 */ |
|||
|
|||
/* USER CODE END SPI1_Init 0 */ |
|||
|
|||
/* USER CODE BEGIN SPI1_Init 1 */ |
|||
|
|||
/* USER CODE END SPI1_Init 1 */ |
|||
hspi1.Instance = SPI1; |
|||
hspi1.Init.Mode = SPI_MODE_MASTER; |
|||
hspi1.Init.Direction = SPI_DIRECTION_2LINES; |
|||
hspi1.Init.DataSize = SPI_DATASIZE_8BIT; |
|||
hspi1.Init.CLKPolarity = SPI_POLARITY_LOW; |
|||
hspi1.Init.CLKPhase = SPI_PHASE_1EDGE; |
|||
hspi1.Init.NSS = SPI_NSS_SOFT; |
|||
hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_128; |
|||
hspi1.Init.FirstBit = SPI_FIRSTBIT_MSB; |
|||
hspi1.Init.TIMode = SPI_TIMODE_DISABLE; |
|||
hspi1.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; |
|||
hspi1.Init.CRCPolynomial = 10; |
|||
if (HAL_SPI_Init(&hspi1) != HAL_OK) |
|||
{ |
|||
Error_Handler(); |
|||
} |
|||
/* USER CODE BEGIN SPI1_Init 2 */ |
|||
|
|||
/* USER CODE END SPI1_Init 2 */ |
|||
|
|||
} |
|||
|
|||
void HAL_SPI_MspInit(SPI_HandleTypeDef* spiHandle) |
|||
{ |
|||
|
|||
GPIO_InitTypeDef GPIO_InitStruct = {0}; |
|||
if(spiHandle->Instance==SPI1) |
|||
{ |
|||
/* USER CODE BEGIN SPI1_MspInit 0 */ |
|||
|
|||
/* USER CODE END SPI1_MspInit 0 */ |
|||
/* SPI1 clock enable */ |
|||
__HAL_RCC_SPI1_CLK_ENABLE(); |
|||
|
|||
__HAL_RCC_GPIOA_CLK_ENABLE(); |
|||
/**SPI1 GPIO Configuration |
|||
PA5 ------> SPI1_SCK |
|||
PA6 ------> SPI1_MISO |
|||
PA7 ------> SPI1_MOSI |
|||
*/ |
|||
GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7; |
|||
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; |
|||
GPIO_InitStruct.Pull = GPIO_NOPULL; |
|||
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; |
|||
GPIO_InitStruct.Alternate = GPIO_AF5_SPI1; |
|||
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); |
|||
|
|||
/* USER CODE BEGIN SPI1_MspInit 1 */ |
|||
|
|||
/* USER CODE END SPI1_MspInit 1 */ |
|||
} |
|||
} |
|||
|
|||
void HAL_SPI_MspDeInit(SPI_HandleTypeDef* spiHandle) |
|||
{ |
|||
|
|||
if(spiHandle->Instance==SPI1) |
|||
{ |
|||
/* USER CODE BEGIN SPI1_MspDeInit 0 */ |
|||
|
|||
/* USER CODE END SPI1_MspDeInit 0 */ |
|||
/* Peripheral clock disable */ |
|||
__HAL_RCC_SPI1_CLK_DISABLE(); |
|||
|
|||
/**SPI1 GPIO Configuration |
|||
PA5 ------> SPI1_SCK |
|||
PA6 ------> SPI1_MISO |
|||
PA7 ------> SPI1_MOSI |
|||
*/ |
|||
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7); |
|||
|
|||
/* USER CODE BEGIN SPI1_MspDeInit 1 */ |
|||
|
|||
/* USER CODE END SPI1_MspDeInit 1 */ |
|||
} |
|||
} |
|||
|
|||
/* USER CODE BEGIN 1 */ |
|||
|
|||
/* USER CODE END 1 */ |
36
app/MDK-ARM/app.uvguix.h_zha
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1 +1 @@ |
|||
Subproject commit a66eaf2a974dbd93497c167cab4d092f61f4f92a |
|||
Subproject commit c14b8b32f3be6597254ff3c3c7990b8e205f1130 |
@ -1,4 +1,11 @@ |
|||
#include <stdint.h> |
|||
#include <stdio.h> |
|||
|
|||
void port_do_debug_light_state(); |
|||
void port_do_debug_light_state(); |
|||
void port_delay_us(uint32_t us); |
|||
|
|||
/******************************************************************************* |
|||
* tmc芯片驱动相关 * |
|||
*******************************************************************************/ |
|||
void port_motor_spi_write_and_read(uint8_t channel, uint8_t *data, size_t length); |
|||
void port_tmc_extern_clk_enable(); |
Write
Preview
Loading…
Cancel
Save
Reference in new issue