|
|
/**
|
|
|
******************************************************************************
|
|
|
* @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 ---------------------------------------------------------*/
|
|
|
/* Private user code ---------------------------------------------------------*/
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
static void APP_SystemClockConfig(void);
|
|
|
static void APP_ConfigTIM1(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);
|
|
|
|
|
|
/* Enable TIM1 clock */
|
|
|
LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_TIM1);
|
|
|
|
|
|
/* Enable GPIOA clock */
|
|
|
LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOA);
|
|
|
|
|
|
/* Configure Systemclock */
|
|
|
APP_SystemClockConfig();
|
|
|
|
|
|
/*Initialize LED*/
|
|
|
BSP_LED_Init(LED3);
|
|
|
|
|
|
/* Configure TIM1 */
|
|
|
APP_ConfigTIM1();
|
|
|
|
|
|
while (1)
|
|
|
{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @brief Configure TIM1
|
|
|
* @param None
|
|
|
* @retval None
|
|
|
*/
|
|
|
static void APP_ConfigTIM1(void)
|
|
|
{
|
|
|
LL_TIM_InitTypeDef TIM1CountInit = {0};
|
|
|
LL_GPIO_InitTypeDef TIM1ChannelInit = {0};
|
|
|
|
|
|
TIM1CountInit.ClockDivision = LL_TIM_CLOCKDIVISION_DIV1; /* Clock no divider */
|
|
|
TIM1CountInit.CounterMode = LL_TIM_COUNTERMODE_UP; /* Count mode:up */
|
|
|
TIM1CountInit.Prescaler = 8000-1; /* prescaler:8000 */
|
|
|
TIM1CountInit.Autoreload = 1000-1; /* Autoreload value:1000 */
|
|
|
TIM1CountInit.RepetitionCounter = 0; /* RepetitionCounter value:0 */
|
|
|
|
|
|
/* Initialize TIM1 */
|
|
|
LL_TIM_Init(TIM1,&TIM1CountInit);
|
|
|
|
|
|
/* Enable CC interrupt */
|
|
|
LL_TIM_EnableIT_CC1(TIM1);
|
|
|
|
|
|
NVIC_SetPriority(TIM1_CC_IRQn, 1);
|
|
|
NVIC_EnableIRQ(TIM1_CC_IRQn);
|
|
|
|
|
|
/* Set CH1 as input mode */
|
|
|
LL_TIM_IC_SetActiveInput(TIM1,LL_TIM_CHANNEL_CH1,LL_TIM_ACTIVEINPUT_DIRECTTI);
|
|
|
|
|
|
/* The circuit is sensitive to TIxFP1 rising edge, TIxFP1 is not inverted */
|
|
|
LL_TIM_IC_SetPolarity(TIM1, LL_TIM_CHANNEL_CH1, LL_TIM_IC_POLARITY_RISING);
|
|
|
|
|
|
/* Map CH1 to PA8 */
|
|
|
TIM1ChannelInit.Pin = LL_GPIO_PIN_8;
|
|
|
TIM1ChannelInit.Pull = LL_GPIO_PULL_DOWN;
|
|
|
TIM1ChannelInit.Mode = LL_GPIO_MODE_ALTERNATE;
|
|
|
TIM1ChannelInit.Alternate = LL_GPIO_AF_4;
|
|
|
TIM1ChannelInit.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
TIM1ChannelInit.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
|
|
|
LL_GPIO_Init(GPIOA,&TIM1ChannelInit);
|
|
|
|
|
|
/* Enable TIM1 CH1 */
|
|
|
LL_TIM_CC_EnableChannel(TIM1,LL_TIM_CHANNEL_CH1);
|
|
|
|
|
|
/* Enable TIM1 */
|
|
|
LL_TIM_EnableCounter(TIM1);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @brief TIM1 CH1 input capture callback
|
|
|
* @param None
|
|
|
* @retval None
|
|
|
*/
|
|
|
void APP_CCCallback(void)
|
|
|
{
|
|
|
/* toggle LED */
|
|
|
BSP_LED_Toggle(LED3);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @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******************/
|