Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* USER CODE BEGIN Header */
- /**
- **************************
- * @file : main.c
- * @brief : Main program body
- **************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2019 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
- *
- **************************
- */
- /* USER CODE END Header */
- /* Includes ------------------------------------------------------------------*/
- #include "main.h"
- /* Private includes ----------------------------------------------------------*/
- /* USER CODE BEGIN Includes */
- #include "main.h"
- #include "stdio.h"
- #include "string.h"
- /* USER CODE END Includes */
- /* Private typedef -----------------------------------------------------------*/
- /* USER CODE BEGIN PTD */
- /* USER CODE END PTD */
- /* Private define ------------------------------------------------------------*/
- /* USER CODE BEGIN PD */
- /* USER CODE END PD */
- /* Private macro -------------------------------------------------------------*/
- /* USER CODE BEGIN PM */
- /* USER CODE END PM */
- /* Private variables ---------------------------------------------------------*/
- UART_HandleTypeDef huart1;
- /* USER CODE BEGIN PV */
- uint8_t Rh_byte1, Rh_byte2, Temp_byte1, Temp_byte2,sum;
- uint16_t RH, TEMP, a;
- char str[50]="";
- /* USER CODE END PV */
- /* Private function prototypes -----------------------------------------------*/
- void SystemClock_Config(void);
- static void MX_GPIO_Init(void);
- static void MX_USART1_UART_Init(void);
- /* USER CODE BEGIN PFP */
- /* USER CODE END PFP */
- /* Private user code ---------------------------------------------------------*/
- /* USER CODE BEGIN 0 */
- void delay_ticks(uint32_t ticks)
- { //SYSTICK TIMER 24 BIT
- SysTick->LOAD = ticks;
- SysTick->VAL = 0;
- SysTick->CTRL = SysTick_CTRL_ENABLE_Msk;
- SysTick->CTRL &= ~SYSTICK_CLKSOURCE_HCLK_DIV8;
- SysTick->CTRL |= SYSTICK_CLKSOURCE_HCLK;
- // COUNTFLAG is a bit that is set to 1 when counter reaches 0.
- // It's automatically cleared when read.
- while ((SysTick->CTRL & SysTick_CTRL_COUNTFLAG_Msk) == 0);
- SysTick->CTRL = 0;
- }
- //238 766
- //delaylere fazla guvenme
- void delay_us(uint32_t us)
- {
- delay_ticks(us * 8);
- }
- static inline void delay_ms(uint32_t ms)
- {
- delay_ticks(ms * 8000);
- }
- GPIO_InitTypeDef GPIO_InitStruct = {0};
- void set_gpio_input (void)
- {
- GPIO_InitStruct.Pin = GPIO_PIN_5;
- GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
- }
- /*Configure GPIO pin : PA2 */
- void set_gpio_output (void)
- {
- GPIO_InitStruct.Pin = GPIO_PIN_5;
- GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
- HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
- }
- void DHT22_start (void)
- {
- set_gpio_output (); // set the pin as output
- HAL_GPIO_WritePin (GPIOA, GPIO_PIN_5, 0); // pull the pin low
- delay_us(500); // wait for 500us
- HAL_GPIO_WritePin (GPIOA, GPIO_PIN_5, 1); // pull the pin high
- delay_us(30); // wait for 30us
- set_gpio_input (); // set as input
- }
- void check_response (void)
- {
- delay_us(40);
- if (!(HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_5)))
- {
- delay_us (80);
- }
- while ((HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_5))); // wait for the pin to go low
- }
- uint8_t read_data (void)
- {
- uint8_t i,j;
- for (j=0;j<8;j++)
- {
- while (!(HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_5))); // wait for the pin to go high
- delay_us(40); // wait for 40 us
- if ((HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_5)) == 0) // if the pin is low
- {
- i&= ~(1<<(7-j)); // write 0
- }
- else i|= (1<<(7-j)); // if the pin is high, write 1
- while (HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_5));
- }
- return i;
- }
- /* USER CODE END 0 */
- /**
- * @brief The application entry point.
- * @retval int
- */
- int main(void)
- {
- /* USER CODE BEGIN 1 */
- /* USER CODE END 1 */
- /* MCU Configuration--------------------------------------------------------*/
- /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
- HAL_Init();
- /* USER CODE BEGIN Init */
- /* USER CODE END Init */
- /* Configure the system clock */
- SystemClock_Config();
- /* USER CODE BEGIN SysInit */
- /* USER CODE END SysInit */
- /* Initialize all configured peripherals */
- MX_GPIO_Init();
- MX_USART1_UART_Init();
- /* USER CODE BEGIN 2 */
- /* USER CODE END 2 */
- /* Infinite loop */
- /* USER CODE BEGIN WHILE */
- while (1)
- {
- /* USER CODE END WHILE */
- /* USER CODE BEGIN 3 */
- DHT22_start ();
- check_response ();
- Rh_byte1 = read_data ();
- Rh_byte2 = read_data ();
- Temp_byte1 = read_data ();
- Temp_byte2 = read_data ();
- //sum = read_data();
- TEMP = ((Temp_byte1<<8)|Temp_byte2);
- RH = ((Rh_byte1<<8)|Rh_byte2);
- //a=(uint8_t)(Rh_byte1+Rh_byte2+Temp_byte1+Temp_byte2);
- //HAL_UART_Transmit(&huart1,(uint8_t*)"resul\r\n",sizeof("resul\r\n")-1,100);
- // ////
- // if ((sum) == a)
- // {
- // TEMP = ((Temp_byte1<<8)|Temp_byte2);
- // RH = ((Rh_byte1<<8)|Rh_byte2);
- //
- // }
- delay_ms(2000);
- // HAL_UART_Transmit(&huart1, (uint8_t *)str,strlen(str), 500);
- sprintf(str,"\f sicaklik = %d.%d nem=%d.%d \n\r",TEMP/10,TEMP%10,RH/10,RH%10);
- HAL_UART_Transmit(&huart1, (uint8_t *)str,strlen(str), 500);
- HAL_GPIO_TogglePin(GPIOA,GPIO_PIN_4);
- }
- /* USER CODE END 3 */
- }
- /**
- * @brief System Clock Configuration
- * @retval None
- */
- void SystemClock_Config(void)
- {
- RCC_OscInitTypeDef RCC_OscInitStruct = {0};
- RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
- RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
- /** Initializes the CPU, AHB and APB busses clocks
- */
- RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
- RCC_OscInitStruct.HSIState = RCC_HSI_ON;
- RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
- RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
- if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
- {
- Error_Handler();
- }
- /** Initializes the CPU, AHB and APB busses clocks
- */
- RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
- |RCC_CLOCKTYPE_PCLK1;
- RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
- RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
- RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
- if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
- {
- Error_Handler();
- }
- PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART1;
- PeriphClkInit.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK1;
- if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
- {
- Error_Handler();
- }
- }
- /**
- * @brief USART1 Initialization Function
- * @param None
- * @retval None
- */
- static void MX_USART1_UART_Init(void)
- {
- /* USER CODE BEGIN USART1_Init 0 */
- /* USER CODE END USART1_Init 0 */
- /* USER CODE BEGIN USART1_Init 1 */
- /* USER CODE END USART1_Init 1 */
- huart1.Instance = USART1;
- huart1.Init.BaudRate = 38400;
- huart1.Init.WordLength = UART_WORDLENGTH_8B;
- huart1.Init.StopBits = UART_STOPBITS_1;
- huart1.Init.Parity = UART_PARITY_NONE;
- huart1.Init.Mode = UART_MODE_TX_RX;
- huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
- huart1.Init.OverSampling = UART_OVERSAMPLING_16;
- huart1.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
- huart1.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
- if (HAL_UART_Init(&huart1) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN USART1_Init 2 */
- /* USER CODE END USART1_Init 2 */
- }
- /**
- * @brief GPIO Initialization Function
- * @param None
- * @retval None
- */
- static void MX_GPIO_Init(void)
- {
- GPIO_InitTypeDef GPIO_InitStruct = {0};
- /* GPIO Ports Clock Enable */
- __HAL_RCC_GPIOF_CLK_ENABLE();
- __HAL_RCC_GPIOA_CLK_ENABLE();
- __HAL_RCC_GPIOB_CLK_ENABLE();
- /*Configure GPIO pin Output Level */
- HAL_GPIO_WritePin(GPIOA, GPIO_PIN_5|GPIO_PIN_7|GPIO_PIN_4, GPIO_PIN_RESET);
- /*Configure GPIO pin Output Level */
- HAL_GPIO_WritePin(GPIOB, GPIO_PIN_1, GPIO_PIN_RESET);
- /*Configure GPIO pins : PA5 PA7 */
- GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_7|GPIO_PIN_4;
- GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
- HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
- /*Configure GPIO pin : PB1 */
- GPIO_InitStruct.Pin = GPIO_PIN_1;
- GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
- HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
- }
- /* USER CODE BEGIN 4 */
- /* USER CODE END 4 */
- /**
- * @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 */
- /* 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(char *file, uint32_t line)
- {
- /* USER CODE BEGIN 6 */
- /* User can add his own implementation to report the file name and line number,
- tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
- /* USER CODE END 6 */
- }
- #endif /* USE_FULL_ASSERT */
- /******** (C) COPYRIGHT STMicroelectronics **END OF FILE*/
Advertisement
Add Comment
Please, Sign In to add comment