mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-29 08:52:04 -07:00
133 lines
3.4 KiB
C
133 lines
3.4 KiB
C
/**
|
||
******************************************************************************
|
||
* @file main.c
|
||
* @author MCU Application Team
|
||
* @brief Main program body
|
||
******************************************************************************
|
||
* @attention
|
||
*
|
||
* <h2><center>© Copyright (c) Puya Semiconductor Co.
|
||
* All rights reserved.</center></h2>
|
||
*
|
||
* <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 "py32f0xx_bsp_button.h"
|
||
#include "py32f0xx_bsp_led.h"
|
||
#include "py32f0xx_bsp_printf.h"
|
||
|
||
/* Private define ------------------------------------------------------------*/
|
||
/* Private variables ---------------------------------------------------------*/
|
||
/* Private user code ---------------------------------------------------------*/
|
||
/* Private macro -------------------------------------------------------------*/
|
||
/* Private function prototypes -----------------------------------------------*/
|
||
static void APP_SystemClockConfig(void);
|
||
static void APP_GpioConfig(void);
|
||
|
||
/**
|
||
* @brief 应用程序入口函数.
|
||
* @retval int
|
||
*/
|
||
int main(void)
|
||
{
|
||
/* 配置系统时钟 */
|
||
APP_SystemClockConfig();
|
||
|
||
/* 初始化GPIO */
|
||
APP_GpioConfig();
|
||
|
||
while (1)
|
||
{
|
||
/* LED灯闪烁 */
|
||
LL_mDelay(500);
|
||
LL_GPIO_TogglePin(GPIOB,LL_GPIO_PIN_5);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief 系统时钟配置函数
|
||
* @param 无
|
||
* @retval 无
|
||
*/
|
||
static void APP_SystemClockConfig(void)
|
||
{
|
||
/* 使能HSI */
|
||
LL_RCC_HSI_Enable();
|
||
while(LL_RCC_HSI_IsReady() != 1)
|
||
{
|
||
}
|
||
|
||
/* 设置 AHB 分频*/
|
||
LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1);
|
||
|
||
/* 配置HSISYS作为系统时钟源 */
|
||
LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_HSISYS);
|
||
while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_HSISYS)
|
||
{
|
||
}
|
||
|
||
/* 设置 APB1 分频*/
|
||
LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_1);
|
||
LL_Init1msTick(8000000);
|
||
|
||
/* 更新系统时钟全局变量SystemCoreClock(也可以通过调用SystemCoreClockUpdate函数更新) */
|
||
LL_SetSystemCoreClock(8000000);
|
||
}
|
||
|
||
/**
|
||
* @brief 配置GPIO
|
||
* @param 无
|
||
* @retval 无
|
||
*/
|
||
static void APP_GpioConfig(void)
|
||
{
|
||
/* 使能时钟 */
|
||
LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOB);
|
||
|
||
/* 将PA5引脚配置为输出 */
|
||
LL_GPIO_SetPinMode(GPIOB, LL_GPIO_PIN_5, LL_GPIO_MODE_OUTPUT);
|
||
}
|
||
|
||
/**
|
||
* @brief 错误执行函数
|
||
* @param 无
|
||
* @retval 无
|
||
*/
|
||
void APP_ErrorHandler(void)
|
||
{
|
||
/* 无限循环 */
|
||
while (1)
|
||
{
|
||
}
|
||
}
|
||
|
||
#ifdef USE_FULL_ASSERT
|
||
/**
|
||
* @brief 输出产生断言错误的源文件名及行号
|
||
* @param file:源文件名指针
|
||
* @param line:发生断言错误的行号
|
||
* @retval 无
|
||
*/
|
||
void assert_failed(uint8_t *file, uint32_t line)
|
||
{
|
||
/* 用户可以根据需要添加自己的打印信息,
|
||
例如: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
||
/* 无限循环 */
|
||
while (1)
|
||
{
|
||
}
|
||
}
|
||
#endif /* USE_FULL_ASSERT */
|
||
|
||
/************************ (C) COPYRIGHT Puya *****END OF FILE******************/
|