Files
PY32_Support/AliBoardExample/Core/Src/main.c
2025-02-28 12:32:54 +03:00

162 lines
5.3 KiB
C

/**
******************************************************************************
* @file main.c
* @author MCU Application Team
* @brief Main program body
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) Puya Semiconductor Co.
* All rights reserved.</center></h2>
*
* <h2><center>&copy; 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 "gpio.h"
/* Private define ------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
uint32_t led_delay = 100;
/* Private user code ---------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
static void APP_SystemClockConfig(void);
/**
* @brief Application Entry Function.
* @retval int
*/
int main(void)
{
/* Reset of all peripherals, Initializes the Systick. */
HAL_Init();
/* System clock configuration */
APP_SystemClockConfig();
MX_GPIO_Init();
/* infinite loop */
while (1)
{
// ïî íàæàòèþ êíîïêè äèîäû ïðîáåãàþò "âíèç"
if((GPIOA->IDR & GPIO_PIN_0) == 0)
{
// ïåðåõîä ñ 2 äèîäà íà 4
GPIOA->ODR |= GPIO_LED_2;
GPIOA->ODR &= ~GPIO_LED_4;
HAL_Delay(led_delay);
// ïåðåõîä ñ 4 äèîäà íà 3
GPIOA->ODR |= GPIO_LED_4;
GPIOA->ODR &= ~GPIO_LED_3;
HAL_Delay(led_delay);
// ïåðåõîä ñ 3 äèîäà íà 2
GPIOA->ODR |= GPIO_LED_3;
GPIOA->ODR &= ~GPIO_LED_2;
HAL_Delay(led_delay);
}
// ïî íàæàòèþ êíîïêè äèîäû ïðîáåãàþò "ââåðõ"
else if ((GPIOA->IDR & GPIO_PIN_3) == 0)
{
// ïåðåõîä ñ 4 äèîäà íà 2
GPIOA->ODR |= GPIO_LED_4;
GPIOA->ODR &= ~GPIO_LED_2;
HAL_Delay(led_delay);
// ïåðåõîä ñ 2 äèîäà íà 3
GPIOA->ODR |= GPIO_LED_2;
GPIOA->ODR &= ~GPIO_LED_3;
HAL_Delay(led_delay);
// ïåðåõîä ñ 3 äèîäà íà 4
GPIOA->ODR |= GPIO_LED_3;
GPIOA->ODR &= ~GPIO_LED_4;
HAL_Delay(led_delay);
}
else
{
// âûêëþ÷åíèå âñåõ äèîäîâ
HAL_GPIO_WritePin(GPIOA, GPIO_LED_2|GPIO_LED_3|GPIO_LED_4, GPIO_PIN_SET);
}
}
}
/**
* @brief System clock configuration function
* @param None
* @retval None
*/
static void APP_SystemClockConfig(void)
{
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
/* Oscillator configuration */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE | RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_LSE; /* Select oscillator HSE, HSI, LSI, LSE */
RCC_OscInitStruct.HSIState = RCC_HSI_ON; /* Enable HSI */
RCC_OscInitStruct.HSIDiv = RCC_HSI_DIV1; /* HSI 1 frequency division */
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_24MHz; /* Configure HSI clock 24MHz */
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS_DISABLE; /* Close HSE bypass */
RCC_OscInitStruct.LSIState = RCC_LSI_OFF; /* Close LSI */
/*RCC_OscInitStruct.LSICalibrationValue = RCC_LSICALIBRATION_32768Hz;*/
RCC_OscInitStruct.LSEState = RCC_LSE_OFF; /* Close LSE */
/*RCC_OscInitStruct.LSEDriver = RCC_LSEDRIVE_MEDIUM;*/
/* Configure oscillator */
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
{
APP_ErrorHandler();
}
/* Clock source configuration */
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_PCLK1; /* Choose to configure clock HCLK, SYSCLK, PCLK1 */
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSISYS; /* Select HSISYS as the system clock */
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; /* AHB clock 1 division */
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; /* APB clock 1 division */
/* Configure clock source */
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
{
APP_ErrorHandler();
}
}
/**
* @brief Error executing function.
* @param None
* @retval None
*/
void APP_ErrorHandler(void)
{
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)
{
/* Users can add their own printing information as needed,
for example: 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******************/