mirror of
https://github.com/peter-tanner/satellite-testing-system.git
synced 2024-11-30 12:30:16 +08:00
891 lines
24 KiB
C
891 lines
24 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file stm32l4xx_hal_msp.c
|
|
* @brief This file provides code for the MSP Initialization
|
|
* and de-Initialization codes.
|
|
******************************************************************************
|
|
* @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 "main.h"
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
/* USER CODE END Includes */
|
|
extern DMA_HandleTypeDef hdma_sdmmc1;
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
/* USER CODE BEGIN TD */
|
|
|
|
/* USER CODE END TD */
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* USER CODE BEGIN Define */
|
|
|
|
/* USER CODE END Define */
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* USER CODE BEGIN Macro */
|
|
|
|
/* USER CODE END Macro */
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
/* USER CODE BEGIN PV */
|
|
|
|
/* USER CODE END PV */
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
/* USER CODE BEGIN PFP */
|
|
|
|
/* USER CODE END PFP */
|
|
|
|
/* External functions --------------------------------------------------------*/
|
|
/* USER CODE BEGIN ExternalFunctions */
|
|
|
|
/* USER CODE END ExternalFunctions */
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
/* USER CODE END 0 */
|
|
/**
|
|
* Initializes the Global MSP.
|
|
*/
|
|
void HAL_MspInit(void)
|
|
{
|
|
|
|
/* USER CODE BEGIN MspInit 0 */
|
|
|
|
/* USER CODE END MspInit 0 */
|
|
PWR_PVDTypeDef sConfigPVD = {0};
|
|
|
|
__HAL_RCC_SYSCFG_CLK_ENABLE();
|
|
__HAL_RCC_PWR_CLK_ENABLE();
|
|
|
|
/* System interrupt init*/
|
|
/* PendSV_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0);
|
|
|
|
/** PVD Configuration
|
|
*/
|
|
sConfigPVD.PVDLevel = PWR_PVDLEVEL_0;
|
|
sConfigPVD.Mode = PWR_PVD_MODE_NORMAL;
|
|
HAL_PWR_ConfigPVD(&sConfigPVD);
|
|
|
|
/** Enable the PVD Output
|
|
*/
|
|
HAL_PWR_EnablePVD();
|
|
|
|
/* USER CODE BEGIN MspInit 1 */
|
|
|
|
/* USER CODE END MspInit 1 */
|
|
}
|
|
|
|
/**
|
|
* @brief CAN MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hcan: CAN handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_CAN_MspInit(CAN_HandleTypeDef* hcan)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
if(hcan->Instance==CAN1)
|
|
{
|
|
/* USER CODE BEGIN CAN1_MspInit 0 */
|
|
|
|
/* USER CODE END CAN1_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_CAN1_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
/**CAN1 GPIO Configuration
|
|
PB8 ------> CAN1_RX
|
|
PB9 ------> CAN1_TX
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF9_CAN1;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN CAN1_MspInit 1 */
|
|
|
|
/* USER CODE END CAN1_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief CAN MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hcan: CAN handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_CAN_MspDeInit(CAN_HandleTypeDef* hcan)
|
|
{
|
|
if(hcan->Instance==CAN1)
|
|
{
|
|
/* USER CODE BEGIN CAN1_MspDeInit 0 */
|
|
|
|
/* USER CODE END CAN1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_CAN1_CLK_DISABLE();
|
|
|
|
/**CAN1 GPIO Configuration
|
|
PB8 ------> CAN1_RX
|
|
PB9 ------> CAN1_TX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_8|GPIO_PIN_9);
|
|
|
|
/* USER CODE BEGIN CAN1_MspDeInit 1 */
|
|
|
|
/* USER CODE END CAN1_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief CRC MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hcrc: CRC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_CRC_MspInit(CRC_HandleTypeDef* hcrc)
|
|
{
|
|
if(hcrc->Instance==CRC)
|
|
{
|
|
/* USER CODE BEGIN CRC_MspInit 0 */
|
|
|
|
/* USER CODE END CRC_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_CRC_CLK_ENABLE();
|
|
/* USER CODE BEGIN CRC_MspInit 1 */
|
|
|
|
/* USER CODE END CRC_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief CRC MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hcrc: CRC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_CRC_MspDeInit(CRC_HandleTypeDef* hcrc)
|
|
{
|
|
if(hcrc->Instance==CRC)
|
|
{
|
|
/* USER CODE BEGIN CRC_MspDeInit 0 */
|
|
|
|
/* USER CODE END CRC_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_CRC_CLK_DISABLE();
|
|
/* USER CODE BEGIN CRC_MspDeInit 1 */
|
|
|
|
/* USER CODE END CRC_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief I2C MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hi2c: I2C handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
|
|
if(hi2c->Instance==I2C3)
|
|
{
|
|
/* USER CODE BEGIN I2C3_MspInit 0 */
|
|
|
|
/* USER CODE END I2C3_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_I2C3;
|
|
PeriphClkInit.I2c3ClockSelection = RCC_I2C3CLKSOURCE_PCLK1;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
/**I2C3 GPIO Configuration
|
|
PC0 ------> I2C3_SCL
|
|
PC1 ------> I2C3_SDA
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_I2C3_CLK_ENABLE();
|
|
/* USER CODE BEGIN I2C3_MspInit 1 */
|
|
|
|
/* USER CODE END I2C3_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief I2C MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hi2c: I2C handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_I2C_MspDeInit(I2C_HandleTypeDef* hi2c)
|
|
{
|
|
if(hi2c->Instance==I2C3)
|
|
{
|
|
/* USER CODE BEGIN I2C3_MspDeInit 0 */
|
|
|
|
/* USER CODE END I2C3_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_I2C3_CLK_DISABLE();
|
|
|
|
/**I2C3 GPIO Configuration
|
|
PC0 ------> I2C3_SCL
|
|
PC1 ------> I2C3_SDA
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_0);
|
|
|
|
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_1);
|
|
|
|
/* USER CODE BEGIN I2C3_MspDeInit 1 */
|
|
|
|
/* USER CODE END I2C3_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 PeriphClkInit = {0};
|
|
if(huart->Instance==LPUART1)
|
|
{
|
|
/* USER CODE BEGIN LPUART1_MspInit 0 */
|
|
|
|
/* USER CODE END LPUART1_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_LPUART1;
|
|
PeriphClkInit.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_PCLK1;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_LPUART1_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
/**LPUART1 GPIO Configuration
|
|
PB10 ------> LPUART1_RX
|
|
PB11 ------> LPUART1_TX
|
|
PB12 ------> LPUART1_DE
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_10|GPIO_PIN_11|GPIO_PIN_12;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF8_LPUART1;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN LPUART1_MspInit 1 */
|
|
|
|
/* USER CODE END LPUART1_MspInit 1 */
|
|
}
|
|
else if(huart->Instance==UART4)
|
|
{
|
|
/* USER CODE BEGIN UART4_MspInit 0 */
|
|
|
|
/* USER CODE END UART4_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_UART4;
|
|
PeriphClkInit.Uart4ClockSelection = RCC_UART4CLKSOURCE_PCLK1;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_UART4_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
/**UART4 GPIO Configuration
|
|
PA0 ------> UART4_TX
|
|
PA1 ------> UART4_RX
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF8_UART4;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN UART4_MspInit 1 */
|
|
|
|
/* USER CODE END UART4_MspInit 1 */
|
|
}
|
|
else if(huart->Instance==USART1)
|
|
{
|
|
/* USER CODE BEGIN USART1_MspInit 0 */
|
|
|
|
/* USER CODE END USART1_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART1;
|
|
PeriphClkInit.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_USART1_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
/**USART1 GPIO Configuration
|
|
PA9 ------> USART1_TX
|
|
PA10 ------> USART1_RX
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN USART1_MspInit 1 */
|
|
|
|
/* USER CODE END USART1_MspInit 1 */
|
|
}
|
|
else if(huart->Instance==USART2)
|
|
{
|
|
/* USER CODE BEGIN USART2_MspInit 0 */
|
|
|
|
/* USER CODE END USART2_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART2;
|
|
PeriphClkInit.Usart2ClockSelection = RCC_USART2CLKSOURCE_PCLK1;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_USART2_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
/**USART2 GPIO Configuration
|
|
PA2 ------> USART2_TX
|
|
PA3 ------> USART2_RX
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF7_USART2;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN USART2_MspInit 1 */
|
|
|
|
/* USER CODE END USART2_MspInit 1 */
|
|
}
|
|
else if(huart->Instance==USART3)
|
|
{
|
|
/* USER CODE BEGIN USART3_MspInit 0 */
|
|
|
|
/* USER CODE END USART3_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART3;
|
|
PeriphClkInit.Usart3ClockSelection = RCC_USART3CLKSOURCE_PCLK1;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_USART3_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
/**USART3 GPIO Configuration
|
|
PC4 ------> USART3_TX
|
|
PC5 ------> USART3_RX
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_4|GPIO_PIN_5;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF7_USART3;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN USART3_MspInit 1 */
|
|
|
|
/* USER CODE END USART3_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==LPUART1)
|
|
{
|
|
/* USER CODE BEGIN LPUART1_MspDeInit 0 */
|
|
|
|
/* USER CODE END LPUART1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_LPUART1_CLK_DISABLE();
|
|
|
|
/**LPUART1 GPIO Configuration
|
|
PB10 ------> LPUART1_RX
|
|
PB11 ------> LPUART1_TX
|
|
PB12 ------> LPUART1_DE
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_10|GPIO_PIN_11|GPIO_PIN_12);
|
|
|
|
/* USER CODE BEGIN LPUART1_MspDeInit 1 */
|
|
|
|
/* USER CODE END LPUART1_MspDeInit 1 */
|
|
}
|
|
else if(huart->Instance==UART4)
|
|
{
|
|
/* USER CODE BEGIN UART4_MspDeInit 0 */
|
|
|
|
/* USER CODE END UART4_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_UART4_CLK_DISABLE();
|
|
|
|
/**UART4 GPIO Configuration
|
|
PA0 ------> UART4_TX
|
|
PA1 ------> UART4_RX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_0|GPIO_PIN_1);
|
|
|
|
/* USER CODE BEGIN UART4_MspDeInit 1 */
|
|
|
|
/* USER CODE END UART4_MspDeInit 1 */
|
|
}
|
|
else 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
|
|
PA9 ------> USART1_TX
|
|
PA10 ------> USART1_RX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9|GPIO_PIN_10);
|
|
|
|
/* USER CODE BEGIN USART1_MspDeInit 1 */
|
|
|
|
/* USER CODE END USART1_MspDeInit 1 */
|
|
}
|
|
else if(huart->Instance==USART2)
|
|
{
|
|
/* USER CODE BEGIN USART2_MspDeInit 0 */
|
|
|
|
/* USER CODE END USART2_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_USART2_CLK_DISABLE();
|
|
|
|
/**USART2 GPIO Configuration
|
|
PA2 ------> USART2_TX
|
|
PA3 ------> USART2_RX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_2|GPIO_PIN_3);
|
|
|
|
/* USER CODE BEGIN USART2_MspDeInit 1 */
|
|
|
|
/* USER CODE END USART2_MspDeInit 1 */
|
|
}
|
|
else if(huart->Instance==USART3)
|
|
{
|
|
/* USER CODE BEGIN USART3_MspDeInit 0 */
|
|
|
|
/* USER CODE END USART3_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_USART3_CLK_DISABLE();
|
|
|
|
/**USART3 GPIO Configuration
|
|
PC4 ------> USART3_TX
|
|
PC5 ------> USART3_RX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_4|GPIO_PIN_5);
|
|
|
|
/* USER CODE BEGIN USART3_MspDeInit 1 */
|
|
|
|
/* USER CODE END USART3_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief MMC MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hmmc: MMC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_MMC_MspInit(MMC_HandleTypeDef* hmmc)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
if(hmmc->Instance==SDMMC1)
|
|
{
|
|
/* USER CODE BEGIN SDMMC1_MspInit 0 */
|
|
|
|
/* USER CODE END SDMMC1_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_SDMMC1_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
__HAL_RCC_GPIOD_CLK_ENABLE();
|
|
/**SDMMC1 GPIO Configuration
|
|
PC8 ------> SDMMC1_D0
|
|
PC9 ------> SDMMC1_D1
|
|
PC10 ------> SDMMC1_D2
|
|
PC11 ------> SDMMC1_D3
|
|
PC12 ------> SDMMC1_CK
|
|
PD2 ------> SDMMC1_CMD
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_11
|
|
|GPIO_PIN_12;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF12_SDMMC1;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_2;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF12_SDMMC1;
|
|
HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
|
|
|
|
/* SDMMC1 DMA Init */
|
|
/* SDMMC1 Init */
|
|
hdma_sdmmc1.Instance = DMA2_Channel4;
|
|
hdma_sdmmc1.Init.Request = DMA_REQUEST_7;
|
|
hdma_sdmmc1.Init.Direction = DMA_PERIPH_TO_MEMORY;
|
|
hdma_sdmmc1.Init.PeriphInc = DMA_PINC_DISABLE;
|
|
hdma_sdmmc1.Init.MemInc = DMA_MINC_ENABLE;
|
|
hdma_sdmmc1.Init.PeriphDataAlignment = DMA_PDATAALIGN_WORD;
|
|
hdma_sdmmc1.Init.MemDataAlignment = DMA_MDATAALIGN_WORD;
|
|
hdma_sdmmc1.Init.Mode = DMA_NORMAL;
|
|
hdma_sdmmc1.Init.Priority = DMA_PRIORITY_LOW;
|
|
if (HAL_DMA_Init(&hdma_sdmmc1) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Several peripheral DMA handle pointers point to the same DMA handle.
|
|
Be aware that there is only one channel to perform all the requested DMAs. */
|
|
/* Be sure to change transfer direction before calling
|
|
HAL_SD_ReadBlocks_DMA or HAL_SD_WriteBlocks_DMA. */
|
|
__HAL_LINKDMA(hmmc,hdmarx,hdma_sdmmc1);
|
|
__HAL_LINKDMA(hmmc,hdmatx,hdma_sdmmc1);
|
|
|
|
/* SDMMC1 interrupt Init */
|
|
HAL_NVIC_SetPriority(SDMMC1_IRQn, 6, 0);
|
|
HAL_NVIC_EnableIRQ(SDMMC1_IRQn);
|
|
/* USER CODE BEGIN SDMMC1_MspInit 1 */
|
|
|
|
/* USER CODE END SDMMC1_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief MMC MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hmmc: MMC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_MMC_MspDeInit(MMC_HandleTypeDef* hmmc)
|
|
{
|
|
if(hmmc->Instance==SDMMC1)
|
|
{
|
|
/* USER CODE BEGIN SDMMC1_MspDeInit 0 */
|
|
|
|
/* USER CODE END SDMMC1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_SDMMC1_CLK_DISABLE();
|
|
|
|
/**SDMMC1 GPIO Configuration
|
|
PC8 ------> SDMMC1_D0
|
|
PC9 ------> SDMMC1_D1
|
|
PC10 ------> SDMMC1_D2
|
|
PC11 ------> SDMMC1_D3
|
|
PC12 ------> SDMMC1_CK
|
|
PD2 ------> SDMMC1_CMD
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_11
|
|
|GPIO_PIN_12);
|
|
|
|
HAL_GPIO_DeInit(GPIOD, GPIO_PIN_2);
|
|
|
|
/* SDMMC1 DMA DeInit */
|
|
HAL_DMA_DeInit(hmmc->hdmarx);
|
|
HAL_DMA_DeInit(hmmc->hdmatx);
|
|
|
|
/* SDMMC1 interrupt DeInit */
|
|
HAL_NVIC_DisableIRQ(SDMMC1_IRQn);
|
|
/* USER CODE BEGIN SDMMC1_MspDeInit 1 */
|
|
|
|
/* USER CODE END SDMMC1_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief SPI MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hspi: SPI handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
if(hspi->Instance==SPI2)
|
|
{
|
|
/* USER CODE BEGIN SPI2_MspInit 0 */
|
|
|
|
/* USER CODE END SPI2_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_SPI2_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
/**SPI2 GPIO Configuration
|
|
PB13 ------> SPI2_SCK
|
|
PB14 ------> SPI2_MISO
|
|
PB15 ------> SPI2_MOSI
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15;
|
|
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_SPI2;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN SPI2_MspInit 1 */
|
|
|
|
/* USER CODE END SPI2_MspInit 1 */
|
|
}
|
|
else if(hspi->Instance==SPI3)
|
|
{
|
|
/* USER CODE BEGIN SPI3_MspInit 0 */
|
|
|
|
/* USER CODE END SPI3_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_SPI3_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
/**SPI3 GPIO Configuration
|
|
PB3 (JTDO-TRACESWO) ------> SPI3_SCK
|
|
PB4 (NJTRST) ------> SPI3_MISO
|
|
PB5 ------> SPI3_MOSI
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF6_SPI3;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN SPI3_MspInit 1 */
|
|
|
|
/* USER CODE END SPI3_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief SPI MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hspi: SPI handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_SPI_MspDeInit(SPI_HandleTypeDef* hspi)
|
|
{
|
|
if(hspi->Instance==SPI2)
|
|
{
|
|
/* USER CODE BEGIN SPI2_MspDeInit 0 */
|
|
|
|
/* USER CODE END SPI2_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_SPI2_CLK_DISABLE();
|
|
|
|
/**SPI2 GPIO Configuration
|
|
PB13 ------> SPI2_SCK
|
|
PB14 ------> SPI2_MISO
|
|
PB15 ------> SPI2_MOSI
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15);
|
|
|
|
/* USER CODE BEGIN SPI2_MspDeInit 1 */
|
|
|
|
/* USER CODE END SPI2_MspDeInit 1 */
|
|
}
|
|
else if(hspi->Instance==SPI3)
|
|
{
|
|
/* USER CODE BEGIN SPI3_MspDeInit 0 */
|
|
|
|
/* USER CODE END SPI3_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_SPI3_CLK_DISABLE();
|
|
|
|
/**SPI3 GPIO Configuration
|
|
PB3 (JTDO-TRACESWO) ------> SPI3_SCK
|
|
PB4 (NJTRST) ------> SPI3_MISO
|
|
PB5 ------> SPI3_MOSI
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5);
|
|
|
|
/* USER CODE BEGIN SPI3_MspDeInit 1 */
|
|
|
|
/* USER CODE END SPI3_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief PCD MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hpcd: PCD handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_PCD_MspInit(PCD_HandleTypeDef* hpcd)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
if(hpcd->Instance==USB_OTG_FS)
|
|
{
|
|
/* USER CODE BEGIN USB_OTG_FS_MspInit 0 */
|
|
|
|
/* USER CODE END USB_OTG_FS_MspInit 0 */
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
/**USB_OTG_FS GPIO Configuration
|
|
PA11 ------> USB_OTG_FS_DM
|
|
PA12 ------> USB_OTG_FS_DP
|
|
*/
|
|
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_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_USB_OTG_FS_CLK_ENABLE();
|
|
|
|
/* Enable VDDUSB */
|
|
if(__HAL_RCC_PWR_IS_CLK_DISABLED())
|
|
{
|
|
__HAL_RCC_PWR_CLK_ENABLE();
|
|
HAL_PWREx_EnableVddUSB();
|
|
__HAL_RCC_PWR_CLK_DISABLE();
|
|
}
|
|
else
|
|
{
|
|
HAL_PWREx_EnableVddUSB();
|
|
}
|
|
/* USB_OTG_FS interrupt Init */
|
|
HAL_NVIC_SetPriority(OTG_FS_IRQn, 7, 0);
|
|
HAL_NVIC_EnableIRQ(OTG_FS_IRQn);
|
|
/* USER CODE BEGIN USB_OTG_FS_MspInit 1 */
|
|
|
|
/* USER CODE END USB_OTG_FS_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief PCD MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hpcd: PCD handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_PCD_MspDeInit(PCD_HandleTypeDef* hpcd)
|
|
{
|
|
if(hpcd->Instance==USB_OTG_FS)
|
|
{
|
|
/* USER CODE BEGIN USB_OTG_FS_MspDeInit 0 */
|
|
|
|
/* USER CODE END USB_OTG_FS_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_USB_OTG_FS_CLK_DISABLE();
|
|
|
|
/**USB_OTG_FS GPIO Configuration
|
|
PA11 ------> USB_OTG_FS_DM
|
|
PA12 ------> USB_OTG_FS_DP
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_11|GPIO_PIN_12);
|
|
|
|
/* Disable VDDUSB */
|
|
if(__HAL_RCC_PWR_IS_CLK_DISABLED())
|
|
{
|
|
__HAL_RCC_PWR_CLK_ENABLE();
|
|
HAL_PWREx_DisableVddUSB();
|
|
__HAL_RCC_PWR_CLK_DISABLE();
|
|
}
|
|
else
|
|
{
|
|
HAL_PWREx_DisableVddUSB();
|
|
}
|
|
|
|
/* USB_OTG_FS interrupt DeInit */
|
|
HAL_NVIC_DisableIRQ(OTG_FS_IRQn);
|
|
/* USER CODE BEGIN USB_OTG_FS_MspDeInit 1 */
|
|
|
|
/* USER CODE END USB_OTG_FS_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|