149 lines
5.0 KiB
C
149 lines
5.0 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 "gpio.h"
|
|
#include "tim.h"
|
|
#include "usart.h"
|
|
#include "pch_sensors.h"
|
|
#include "rs_message.h"
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* Private variables ---------------------------------------------------------*/
|
|
/* Private user code ---------------------------------------------------------*/
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
static void APP_SystemClockConfig(void);
|
|
|
|
/**
|
|
* @brief Application Entry Function.
|
|
* @retval int
|
|
*/
|
|
int main(void)
|
|
{
|
|
__HAL_DBGMCU_FREEZE_TIM1();
|
|
__HAL_DBGMCU_FREEZE_TIM14();
|
|
/* Reset of all peripherals, Initializes the Systick. */
|
|
HAL_Init();
|
|
|
|
/* System clock configuration */
|
|
APP_SystemClockConfig();
|
|
|
|
MX_GPIO_Init();
|
|
MX_TIM1_Init();
|
|
HAL_TIM_Base_Start(&htim1);
|
|
MX_USART1_UART_Init();
|
|
|
|
// MODBUS_FirstInit();
|
|
// RS_Receive_IT(&hmodbus1, &MODBUS_MSG);
|
|
|
|
|
|
PCHSens_FirstInit();
|
|
/* infinite loop */
|
|
while (1)
|
|
{
|
|
GPIOA->ODR ^= GPIO_LED_2;
|
|
PCHSens_ReadTemperature(&module1);
|
|
PCHSens_ReadTemperature(&module2);
|
|
PCHSens_ReadTemperature(&module3);
|
|
PCHSens_ReadTemperature(&module4);
|
|
PCHSens_ReadTemperature(&module5);
|
|
PCHSens_ReadTemperature(&module6);
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @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)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/* 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)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @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 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******************/
|