|
/**
|
* @file bsp.c
|
* @author your name (you@domain.com)
|
* @brief
|
* @version 0.1
|
* @date 2023-04-05
|
*
|
* @copyright Copyright (c) 2023
|
*
|
*/
|
|
#include "bsp.h"
|
#include "stm32l4xx_hal.h"
|
|
#ifdef __cplusplus
|
extern "C" {
|
#endif
|
|
/* private function prototype ----------------------------------------------- */
|
static void _error_handler(void);
|
static void _system_clock_config(void);
|
|
/* includes ----------------------------------------------------------------- */
|
/**
|
* @brief BSP initialization.
|
* @retval None
|
*/
|
void bsp_init(void)
|
{
|
HAL_Init();
|
SystemClock_Config();
|
}
|
|
/* private functions -------------------------------------------------------- */
|
/**
|
* @brief System Clock Configuration
|
* @retval None
|
*/
|
void SystemClock_Config(void)
|
{
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
|
/** Configure the main internal regulator output voltage
|
*/
|
if (HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1) != HAL_OK)
|
{
|
Error_Handler();
|
}
|
/** Initializes the RCC Oscillators according to the specified parameters
|
* in the RCC_OscInitTypeDef structure.
|
*/
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
RCC_OscInitStruct.PLL.PLLM = 3;
|
RCC_OscInitStruct.PLL.PLLN = 32;
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV7;
|
RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2;
|
RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV4;
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
|
{
|
Error_Handler();
|
}
|
/** Initializes the CPU, AHB and APB buses clocks
|
*/
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
|
|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
|
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_3) != HAL_OK)
|
{
|
Error_Handler();
|
}
|
}
|
|
/* USER CODE BEGIN 4 */
|
|
/* USER CODE END 4 */
|
|
/**
|
* @brief This function is executed in case of error occurrence.
|
* @retval None
|
*/
|
void Error_Handler(void)
|
{
|
/* USER CODE BEGIN Error_Handler_Debug */
|
/* User can add his own implementation to report the HAL error return state */
|
__disable_irq();
|
while (1)
|
{
|
}
|
/* USER CODE END Error_Handler_Debug */
|
}
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
/* ----------------------------- end of file -------------------------------- */
|