832 lines
23 KiB
C
832 lines
23 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file stm32f4xx_hal_msp.c
|
|
* @brief This file provides code for the MSP Initialization
|
|
* and de-Initialization codes.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2025 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 */
|
|
|
|
/* 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 */
|
|
|
|
__HAL_RCC_SYSCFG_CLK_ENABLE();
|
|
__HAL_RCC_PWR_CLK_ENABLE();
|
|
|
|
/* System interrupt init*/
|
|
/* PendSV_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0);
|
|
|
|
/* USER CODE BEGIN MspInit 1 */
|
|
|
|
/* USER CODE END MspInit 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 DMA2D MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hdma2d: DMA2D handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_DMA2D_MspInit(DMA2D_HandleTypeDef* hdma2d)
|
|
{
|
|
if(hdma2d->Instance==DMA2D)
|
|
{
|
|
/* USER CODE BEGIN DMA2D_MspInit 0 */
|
|
|
|
/* USER CODE END DMA2D_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_DMA2D_CLK_ENABLE();
|
|
/* DMA2D interrupt Init */
|
|
HAL_NVIC_SetPriority(DMA2D_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(DMA2D_IRQn);
|
|
/* USER CODE BEGIN DMA2D_MspInit 1 */
|
|
|
|
/* USER CODE END DMA2D_MspInit 1 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief DMA2D MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hdma2d: DMA2D handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_DMA2D_MspDeInit(DMA2D_HandleTypeDef* hdma2d)
|
|
{
|
|
if(hdma2d->Instance==DMA2D)
|
|
{
|
|
/* USER CODE BEGIN DMA2D_MspDeInit 0 */
|
|
|
|
/* USER CODE END DMA2D_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_DMA2D_CLK_DISABLE();
|
|
|
|
/* DMA2D interrupt DeInit */
|
|
HAL_NVIC_DisableIRQ(DMA2D_IRQn);
|
|
/* USER CODE BEGIN DMA2D_MspDeInit 1 */
|
|
|
|
/* USER CODE END DMA2D_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};
|
|
if(hi2c->Instance==I2C3)
|
|
{
|
|
/* USER CODE BEGIN I2C3_MspInit 0 */
|
|
|
|
/* USER CODE END I2C3_MspInit 0 */
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
/**I2C3 GPIO Configuration
|
|
PC9 ------> I2C3_SDA
|
|
PA8 ------> I2C3_SCL
|
|
*/
|
|
GPIO_InitStruct.Pin = I2C3_SDA_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
|
|
HAL_GPIO_Init(I2C3_SDA_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = I2C3_SCL_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
|
|
HAL_GPIO_Init(I2C3_SCL_GPIO_Port, &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
|
|
PC9 ------> I2C3_SDA
|
|
PA8 ------> I2C3_SCL
|
|
*/
|
|
HAL_GPIO_DeInit(I2C3_SDA_GPIO_Port, I2C3_SDA_Pin);
|
|
|
|
HAL_GPIO_DeInit(I2C3_SCL_GPIO_Port, I2C3_SCL_Pin);
|
|
|
|
/* USER CODE BEGIN I2C3_MspDeInit 1 */
|
|
|
|
/* USER CODE END I2C3_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief LTDC MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param hltdc: LTDC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_LTDC_MspInit(LTDC_HandleTypeDef* hltdc)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
|
if(hltdc->Instance==LTDC)
|
|
{
|
|
/* USER CODE BEGIN LTDC_MspInit 0 */
|
|
|
|
/* USER CODE END LTDC_MspInit 0 */
|
|
|
|
/** Initializes the peripherals clock
|
|
*/
|
|
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LTDC;
|
|
PeriphClkInitStruct.PLLSAI.PLLSAIN = 50;
|
|
PeriphClkInitStruct.PLLSAI.PLLSAIR = 2;
|
|
PeriphClkInitStruct.PLLSAIDivR = RCC_PLLSAIDIVR_2;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_LTDC_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOF_CLK_ENABLE();
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
__HAL_RCC_GPIOG_CLK_ENABLE();
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
__HAL_RCC_GPIOD_CLK_ENABLE();
|
|
/**LTDC GPIO Configuration
|
|
PF10 ------> LTDC_DE
|
|
PA3 ------> LTDC_B5
|
|
PA4 ------> LTDC_VSYNC
|
|
PA6 ------> LTDC_G2
|
|
PB0 ------> LTDC_R3
|
|
PB1 ------> LTDC_R6
|
|
PB10 ------> LTDC_G4
|
|
PB11 ------> LTDC_G5
|
|
PG6 ------> LTDC_R7
|
|
PG7 ------> LTDC_CLK
|
|
PC6 ------> LTDC_HSYNC
|
|
PC7 ------> LTDC_G6
|
|
PA11 ------> LTDC_R4
|
|
PA12 ------> LTDC_R5
|
|
PC10 ------> LTDC_R2
|
|
PD3 ------> LTDC_G7
|
|
PD6 ------> LTDC_B2
|
|
PG10 ------> LTDC_G3
|
|
PG11 ------> LTDC_B3
|
|
PG12 ------> LTDC_B4
|
|
PB8 ------> LTDC_B6
|
|
PB9 ------> LTDC_B7
|
|
*/
|
|
GPIO_InitStruct.Pin = ENABLE_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(ENABLE_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = B5_Pin|VSYNC_Pin|G2_Pin|R4_Pin
|
|
|R5_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = R3_Pin|R6_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF9_LTDC;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = G4_Pin|G5_Pin|B6_Pin|B7_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = R7_Pin|DOTCLK_Pin|B3_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = HSYNC_Pin|G6_Pin|R2_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = G7_Pin|B2_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = G3_Pin|B4_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF9_LTDC;
|
|
HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
|
|
|
|
/* LTDC interrupt Init */
|
|
HAL_NVIC_SetPriority(LTDC_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(LTDC_IRQn);
|
|
/* USER CODE BEGIN LTDC_MspInit 1 */
|
|
|
|
/* USER CODE END LTDC_MspInit 1 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief LTDC MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param hltdc: LTDC handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_LTDC_MspDeInit(LTDC_HandleTypeDef* hltdc)
|
|
{
|
|
if(hltdc->Instance==LTDC)
|
|
{
|
|
/* USER CODE BEGIN LTDC_MspDeInit 0 */
|
|
|
|
/* USER CODE END LTDC_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_LTDC_CLK_DISABLE();
|
|
|
|
/**LTDC GPIO Configuration
|
|
PF10 ------> LTDC_DE
|
|
PA3 ------> LTDC_B5
|
|
PA4 ------> LTDC_VSYNC
|
|
PA6 ------> LTDC_G2
|
|
PB0 ------> LTDC_R3
|
|
PB1 ------> LTDC_R6
|
|
PB10 ------> LTDC_G4
|
|
PB11 ------> LTDC_G5
|
|
PG6 ------> LTDC_R7
|
|
PG7 ------> LTDC_CLK
|
|
PC6 ------> LTDC_HSYNC
|
|
PC7 ------> LTDC_G6
|
|
PA11 ------> LTDC_R4
|
|
PA12 ------> LTDC_R5
|
|
PC10 ------> LTDC_R2
|
|
PD3 ------> LTDC_G7
|
|
PD6 ------> LTDC_B2
|
|
PG10 ------> LTDC_G3
|
|
PG11 ------> LTDC_B3
|
|
PG12 ------> LTDC_B4
|
|
PB8 ------> LTDC_B6
|
|
PB9 ------> LTDC_B7
|
|
*/
|
|
HAL_GPIO_DeInit(ENABLE_GPIO_Port, ENABLE_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOA, B5_Pin|VSYNC_Pin|G2_Pin|R4_Pin
|
|
|R5_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOB, R3_Pin|R6_Pin|G4_Pin|G5_Pin
|
|
|B6_Pin|B7_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOG, R7_Pin|DOTCLK_Pin|G3_Pin|B3_Pin
|
|
|B4_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOC, HSYNC_Pin|G6_Pin|R2_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOD, G7_Pin|B2_Pin);
|
|
|
|
/* LTDC interrupt DeInit */
|
|
HAL_NVIC_DisableIRQ(LTDC_IRQn);
|
|
/* USER CODE BEGIN LTDC_MspDeInit 1 */
|
|
|
|
/* USER CODE END LTDC_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==SPI5)
|
|
{
|
|
/* USER CODE BEGIN SPI5_MspInit 0 */
|
|
|
|
/* USER CODE END SPI5_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_SPI5_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOF_CLK_ENABLE();
|
|
/**SPI5 GPIO Configuration
|
|
PF7 ------> SPI5_SCK
|
|
PF8 ------> SPI5_MISO
|
|
PF9 ------> SPI5_MOSI
|
|
*/
|
|
GPIO_InitStruct.Pin = SPI5_SCK_Pin|SPI5_MISO_Pin|SPI5_MOSI_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF5_SPI5;
|
|
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN SPI5_MspInit 1 */
|
|
|
|
/* USER CODE END SPI5_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==SPI5)
|
|
{
|
|
/* USER CODE BEGIN SPI5_MspDeInit 0 */
|
|
|
|
/* USER CODE END SPI5_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_SPI5_CLK_DISABLE();
|
|
|
|
/**SPI5 GPIO Configuration
|
|
PF7 ------> SPI5_SCK
|
|
PF8 ------> SPI5_MISO
|
|
PF9 ------> SPI5_MOSI
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOF, SPI5_SCK_Pin|SPI5_MISO_Pin|SPI5_MOSI_Pin);
|
|
|
|
/* USER CODE BEGIN SPI5_MspDeInit 1 */
|
|
|
|
/* USER CODE END SPI5_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief TIM_Base MSP Initialization
|
|
* This function configures the hardware resources used in this example
|
|
* @param htim_base: TIM_Base handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* htim_base)
|
|
{
|
|
if(htim_base->Instance==TIM1)
|
|
{
|
|
/* USER CODE BEGIN TIM1_MspInit 0 */
|
|
|
|
/* USER CODE END TIM1_MspInit 0 */
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_TIM1_CLK_ENABLE();
|
|
/* USER CODE BEGIN TIM1_MspInit 1 */
|
|
|
|
/* USER CODE END TIM1_MspInit 1 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief TIM_Base MSP De-Initialization
|
|
* This function freeze the hardware resources used in this example
|
|
* @param htim_base: TIM_Base handle pointer
|
|
* @retval None
|
|
*/
|
|
void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* htim_base)
|
|
{
|
|
if(htim_base->Instance==TIM1)
|
|
{
|
|
/* USER CODE BEGIN TIM1_MspDeInit 0 */
|
|
|
|
/* USER CODE END TIM1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_TIM1_CLK_DISABLE();
|
|
/* USER CODE BEGIN TIM1_MspDeInit 1 */
|
|
|
|
/* USER CODE END TIM1_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};
|
|
if(huart->Instance==USART1)
|
|
{
|
|
/* USER CODE BEGIN USART1_MspInit 0 */
|
|
|
|
/* USER CODE END USART1_MspInit 0 */
|
|
/* 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 = STLINK_RX_Pin|STLINK_TX_Pin;
|
|
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 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @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
|
|
PA9 ------> USART1_TX
|
|
PA10 ------> USART1_RX
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, STLINK_RX_Pin|STLINK_TX_Pin);
|
|
|
|
/* USER CODE BEGIN USART1_MspDeInit 1 */
|
|
|
|
/* USER CODE END USART1_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
static uint32_t FMC_Initialized = 0;
|
|
|
|
static void HAL_FMC_MspInit(void){
|
|
/* USER CODE BEGIN FMC_MspInit 0 */
|
|
|
|
/* USER CODE END FMC_MspInit 0 */
|
|
GPIO_InitTypeDef GPIO_InitStruct ={0};
|
|
if (FMC_Initialized) {
|
|
return;
|
|
}
|
|
FMC_Initialized = 1;
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_FMC_CLK_ENABLE();
|
|
|
|
/** FMC GPIO Configuration
|
|
PF0 ------> FMC_A0
|
|
PF1 ------> FMC_A1
|
|
PF2 ------> FMC_A2
|
|
PF3 ------> FMC_A3
|
|
PF4 ------> FMC_A4
|
|
PF5 ------> FMC_A5
|
|
PC0 ------> FMC_SDNWE
|
|
PF11 ------> FMC_SDNRAS
|
|
PF12 ------> FMC_A6
|
|
PF13 ------> FMC_A7
|
|
PF14 ------> FMC_A8
|
|
PF15 ------> FMC_A9
|
|
PG0 ------> FMC_A10
|
|
PG1 ------> FMC_A11
|
|
PE7 ------> FMC_D4
|
|
PE8 ------> FMC_D5
|
|
PE9 ------> FMC_D6
|
|
PE10 ------> FMC_D7
|
|
PE11 ------> FMC_D8
|
|
PE12 ------> FMC_D9
|
|
PE13 ------> FMC_D10
|
|
PE14 ------> FMC_D11
|
|
PE15 ------> FMC_D12
|
|
PD8 ------> FMC_D13
|
|
PD9 ------> FMC_D14
|
|
PD10 ------> FMC_D15
|
|
PD14 ------> FMC_D0
|
|
PD15 ------> FMC_D1
|
|
PG4 ------> FMC_BA0
|
|
PG5 ------> FMC_BA1
|
|
PG8 ------> FMC_SDCLK
|
|
PD0 ------> FMC_D2
|
|
PD1 ------> FMC_D3
|
|
PG15 ------> FMC_SDNCAS
|
|
PB5 ------> FMC_SDCKE1
|
|
PB6 ------> FMC_SDNE1
|
|
PE0 ------> FMC_NBL0
|
|
PE1 ------> FMC_NBL1
|
|
*/
|
|
GPIO_InitStruct.Pin = A0_Pin|A1_Pin|A2_Pin|A3_Pin
|
|
|A4_Pin|A5_Pin|SDNRAS_Pin|A6_Pin
|
|
|A7_Pin|A8_Pin|A9_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = SDNWE_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(SDNWE_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = A10_Pin|A11_Pin|BA0_Pin|BA1_Pin
|
|
|SDCLK_Pin|SDNCAS_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = D4_Pin|D5_Pin|D6_Pin|D7_Pin
|
|
|D8_Pin|D9_Pin|D10_Pin|D11_Pin
|
|
|D12_Pin|NBL0_Pin|NBL1_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(GPIOE, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = D13_Pin|D14_Pin|D15_Pin|D0_Pin
|
|
|D1_Pin|D2_Pin|D3_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = SDCKE1_Pin|SDNE1_Pin;
|
|
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_FMC;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* USER CODE BEGIN FMC_MspInit 1 */
|
|
|
|
/* USER CODE END FMC_MspInit 1 */
|
|
}
|
|
|
|
void HAL_SDRAM_MspInit(SDRAM_HandleTypeDef* hsdram){
|
|
/* USER CODE BEGIN SDRAM_MspInit 0 */
|
|
|
|
/* USER CODE END SDRAM_MspInit 0 */
|
|
HAL_FMC_MspInit();
|
|
/* USER CODE BEGIN SDRAM_MspInit 1 */
|
|
|
|
/* USER CODE END SDRAM_MspInit 1 */
|
|
}
|
|
|
|
static uint32_t FMC_DeInitialized = 0;
|
|
|
|
static void HAL_FMC_MspDeInit(void){
|
|
/* USER CODE BEGIN FMC_MspDeInit 0 */
|
|
|
|
/* USER CODE END FMC_MspDeInit 0 */
|
|
if (FMC_DeInitialized) {
|
|
return;
|
|
}
|
|
FMC_DeInitialized = 1;
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_FMC_CLK_DISABLE();
|
|
|
|
/** FMC GPIO Configuration
|
|
PF0 ------> FMC_A0
|
|
PF1 ------> FMC_A1
|
|
PF2 ------> FMC_A2
|
|
PF3 ------> FMC_A3
|
|
PF4 ------> FMC_A4
|
|
PF5 ------> FMC_A5
|
|
PC0 ------> FMC_SDNWE
|
|
PF11 ------> FMC_SDNRAS
|
|
PF12 ------> FMC_A6
|
|
PF13 ------> FMC_A7
|
|
PF14 ------> FMC_A8
|
|
PF15 ------> FMC_A9
|
|
PG0 ------> FMC_A10
|
|
PG1 ------> FMC_A11
|
|
PE7 ------> FMC_D4
|
|
PE8 ------> FMC_D5
|
|
PE9 ------> FMC_D6
|
|
PE10 ------> FMC_D7
|
|
PE11 ------> FMC_D8
|
|
PE12 ------> FMC_D9
|
|
PE13 ------> FMC_D10
|
|
PE14 ------> FMC_D11
|
|
PE15 ------> FMC_D12
|
|
PD8 ------> FMC_D13
|
|
PD9 ------> FMC_D14
|
|
PD10 ------> FMC_D15
|
|
PD14 ------> FMC_D0
|
|
PD15 ------> FMC_D1
|
|
PG4 ------> FMC_BA0
|
|
PG5 ------> FMC_BA1
|
|
PG8 ------> FMC_SDCLK
|
|
PD0 ------> FMC_D2
|
|
PD1 ------> FMC_D3
|
|
PG15 ------> FMC_SDNCAS
|
|
PB5 ------> FMC_SDCKE1
|
|
PB6 ------> FMC_SDNE1
|
|
PE0 ------> FMC_NBL0
|
|
PE1 ------> FMC_NBL1
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOF, A0_Pin|A1_Pin|A2_Pin|A3_Pin
|
|
|A4_Pin|A5_Pin|SDNRAS_Pin|A6_Pin
|
|
|A7_Pin|A8_Pin|A9_Pin);
|
|
|
|
HAL_GPIO_DeInit(SDNWE_GPIO_Port, SDNWE_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOG, A10_Pin|A11_Pin|BA0_Pin|BA1_Pin
|
|
|SDCLK_Pin|SDNCAS_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOE, D4_Pin|D5_Pin|D6_Pin|D7_Pin
|
|
|D8_Pin|D9_Pin|D10_Pin|D11_Pin
|
|
|D12_Pin|NBL0_Pin|NBL1_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOD, D13_Pin|D14_Pin|D15_Pin|D0_Pin
|
|
|D1_Pin|D2_Pin|D3_Pin);
|
|
|
|
HAL_GPIO_DeInit(GPIOB, SDCKE1_Pin|SDNE1_Pin);
|
|
|
|
/* USER CODE BEGIN FMC_MspDeInit 1 */
|
|
|
|
/* USER CODE END FMC_MspDeInit 1 */
|
|
}
|
|
|
|
void HAL_SDRAM_MspDeInit(SDRAM_HandleTypeDef* hsdram){
|
|
/* USER CODE BEGIN SDRAM_MspDeInit 0 */
|
|
|
|
/* USER CODE END SDRAM_MspDeInit 0 */
|
|
HAL_FMC_MspDeInit();
|
|
/* USER CODE BEGIN SDRAM_MspDeInit 1 */
|
|
|
|
/* USER CODE END SDRAM_MspDeInit 1 */
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|