|
|
/**
|
|
|
******************************************************************************
|
|
|
* @file main.c
|
|
|
* @author MCU Application Team
|
|
|
* @brief Main program body
|
|
|
******************************************************************************
|
|
|
* @attention
|
|
|
*
|
|
|
* <h2><center>© Copyright (c) 2023 Puya Semiconductor Co.
|
|
|
* All rights reserved.</center></h2>
|
|
|
*
|
|
|
* This software component is licensed by Puya under BSD 3-Clause license,
|
|
|
* the "License"; You may not use this file except in compliance with the
|
|
|
* License. You may obtain a copy of the License at:
|
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
|
*
|
|
|
******************************************************************************
|
|
|
* @attention
|
|
|
*
|
|
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
|
|
* All rights reserved.</center></h2>
|
|
|
*
|
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
|
* the "License"; You may not use this file except in compliance with the
|
|
|
* License. You may obtain a copy of the License at:
|
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
|
*
|
|
|
******************************************************************************
|
|
|
*/
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
#include "main.h"
|
|
|
#include "py32f403xx_ll_Start_Kit.h"
|
|
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
LL_UTILS_PLLInitTypeDef UTILS_PLLInitStruct = {LL_RCC_PLLMUL_3, \
|
|
|
LL_RCC_PREDIV_DIV_1};
|
|
|
LL_UTILS_ClkInitTypeDef UTILS_ClkInitStruct = {LL_RCC_SYSCLK_DIV_2, \
|
|
|
LL_RCC_APB1_DIV_2, \
|
|
|
LL_RCC_APB2_DIV_2};
|
|
|
|
|
|
/* Private user code ---------------------------------------------------------*/
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
static void APP_SystemClockConfig(void);
|
|
|
static void APP_McoConfigGpio(void);
|
|
|
|
|
|
/**
|
|
|
* @brief Main program.
|
|
|
* @param None
|
|
|
* @retval int
|
|
|
*/
|
|
|
int main(void)
|
|
|
{
|
|
|
/* Enable SYSCFG and PWR clock */
|
|
|
LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_SYSCFG);
|
|
|
LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR);
|
|
|
|
|
|
/* 3 bits for pre-emption priority, 0 bits for subpriority */
|
|
|
NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_3);
|
|
|
|
|
|
/* Configure system clock */
|
|
|
APP_SystemClockConfig();
|
|
|
|
|
|
/* Initialize LED */
|
|
|
BSP_LED_Init(LED_GREEN);
|
|
|
|
|
|
/* Configures system clock with HSE as clock source of the PLL */
|
|
|
/* system clock = 24MHz * 3 = 72MHz, HCLK = 36MHz, PCLK1 = 18MHz, PCLK2 = 18MHz */
|
|
|
LL_PLL_ConfigSystemClock_HSE(HSE_VALUE, LL_UTILS_HSEBYPASS_OFF, &UTILS_PLLInitStruct, &UTILS_ClkInitStruct);
|
|
|
|
|
|
/* To match the new system clock,configures the Cortex-M SysTick source to have 1ms time base. */
|
|
|
LL_Init1msTick(SystemCoreClock);
|
|
|
|
|
|
/* Configure MCO pin */
|
|
|
APP_McoConfigGpio();
|
|
|
|
|
|
/* Configure MCO clock source and divider */
|
|
|
LL_RCC_ConfigMCO(LL_RCC_MCOSOURCE_SYSCLK, LL_RCC_MCO_DIV_8);
|
|
|
|
|
|
while (1)
|
|
|
{
|
|
|
BSP_LED_Toggle(LED_GREEN);
|
|
|
LL_mDelay(1000);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @brief Configure MCO pin
|
|
|
* @param None
|
|
|
* @retval None
|
|
|
*/
|
|
|
static void APP_McoConfigGpio(void)
|
|
|
{
|
|
|
/* Enable GPIOA clock */
|
|
|
LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOA);
|
|
|
|
|
|
LL_GPIO_SetPinMode(GPIOA, LL_GPIO_PIN_8, LL_GPIO_MODE_ALTERNATE);
|
|
|
LL_GPIO_SetPinOutputType(GPIOA, LL_GPIO_PIN_8, LL_GPIO_OUTPUT_PUSHPULL);
|
|
|
LL_GPIO_SetPinSpeed(GPIOA, LL_GPIO_PIN_8, LL_GPIO_SPEED_FREQ_VERY_HIGH);
|
|
|
LL_GPIO_SetPinPull(GPIOA, LL_GPIO_PIN_8, LL_GPIO_PULL_NO);
|
|
|
LL_GPIO_SetAFPin_8_15(GPIOA, LL_GPIO_PIN_8, LL_GPIO_AF_0);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @brief Configure system clock
|
|
|
* @param None
|
|
|
* @retval None
|
|
|
*/
|
|
|
static void APP_SystemClockConfig(void)
|
|
|
{
|
|
|
/* Enable HSI */
|
|
|
LL_RCC_HSI_Enable();
|
|
|
while(LL_RCC_HSI_IsReady() != 1)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/* Set AHB prescaler: HCLK = SYSCLK */
|
|
|
LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1);
|
|
|
|
|
|
/* Select HSI as system clock source */
|
|
|
LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_HSI);
|
|
|
while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_HSI)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
/* Set APB1 & APB2 prescaler: PCLK1 = HCLK, PCLK2 = HCLK/2 */
|
|
|
LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_1);
|
|
|
LL_RCC_SetAPB2Prescaler(LL_RCC_APB2_DIV_2);
|
|
|
|
|
|
/* Set systick to 1ms in using frequency set to 8MHz */
|
|
|
LL_Init1msTick(8000000);
|
|
|
|
|
|
/* Update the SystemCoreClock global variable(which can be updated also through SystemCoreClockUpdate function) */
|
|
|
LL_SetSystemCoreClock(8000000);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @brief Error handling function
|
|
|
* @param None
|
|
|
* @retval None
|
|
|
*/
|
|
|
void APP_ErrorHandler(void)
|
|
|
{
|
|
|
/* Infinite loop */
|
|
|
while (1)
|
|
|
{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#ifdef USE_FULL_ASSERT
|
|
|
/**
|
|
|
* @brief Reports the name of the source file and the source line number
|
|
|
* where the assert_param error has occurred.
|
|
|
* @param file:Pointer to the source file name
|
|
|
* @param line:assert_param error line source number
|
|
|
* @retval None
|
|
|
*/
|
|
|
void assert_failed(uint8_t *file, uint32_t line)
|
|
|
{
|
|
|
/* User can add His own implementation to report the file name and line number,
|
|
|
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
|
|
/* Infinite loop */
|
|
|
while (1)
|
|
|
{
|
|
|
}
|
|
|
}
|
|
|
#endif /* USE_FULL_ASSERT */
|
|
|
|
|
|
/************************ (C) COPYRIGHT Puya *****END OF FILE******************/
|