STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
hardware.c
Go to the documentation of this file.
1 
14 /* Includes ------------------------------------------------------------------*/
15 #include "hardware.h"
16 #include "error_handler.h"
17 
26 {
27  RCC_OscInitTypeDef RCC_OscInitStruct = {0U};
28  RCC_ClkInitTypeDef RCC_ClkInitStruct = {0U};
29  RCC_PeriphCLKInitTypeDef PeriphClkInit = {0U};
30 
31  __HAL_RCC_SYSCFG_CLK_ENABLE();
32  __HAL_RCC_PWR_CLK_ENABLE();
33 
34  RCC_OscInitStruct.OscillatorType =
35  RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_LSI;
36  RCC_OscInitStruct.HSIState = RCC_HSI_ON;
37  RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
38  RCC_OscInitStruct.LSIState = RCC_LSI_ON;
39  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
40  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
41  RCC_OscInitStruct.PLL.PLLM = 1U;
42  RCC_OscInitStruct.PLL.PLLN = 10U;
43  RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
44  RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2;
45  RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV2;
46  if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
47  {
48  ErrorHandler();
49  }
50 
51  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK |
52  RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;
53  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
54  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
55  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
56  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
57 
58  if(HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4) != HAL_OK)
59  {
60  ErrorHandler();
61  }
62 
63  PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_RTC;
64  PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
65  if(HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
66  {
67  ErrorHandler();
68  }
69 
70  if(HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1) != HAL_OK)
71  {
72  ErrorHandler();
73  }
74 }
75 
79 void GpioInit(void)
80 {
81  GPIO_InitTypeDef GPIO_InitStruct = {0U};
82 
83  __HAL_RCC_GPIOA_CLK_ENABLE();
84  __HAL_RCC_GPIOB_CLK_ENABLE();
85 
86  LedLd2Off();
87  LedLd3Off();
88 
89  GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
90  GPIO_InitStruct.Pull = GPIO_NOPULL;
91  GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
92 
93  GPIO_InitStruct.Pin = LED_LD2_Pin;
94  HAL_GPIO_Init(LED_LD2_Port, &GPIO_InitStruct);
95 
96  GPIO_InitStruct.Pin = LED_LD3_Pin;
97  HAL_GPIO_Init(LED_LD3_Port, &GPIO_InitStruct);
98 }
99 
103 void GpioDeinit(void)
104 {
105  GPIO_InitTypeDef GPIO_InitStruct = {0U};
106 
107  __HAL_RCC_GPIOA_CLK_ENABLE();
108  __HAL_RCC_GPIOB_CLK_ENABLE();
109 
110  LedLd2Off();
111  LedLd3Off();
112 
113  GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
114  GPIO_InitStruct.Pull = GPIO_NOPULL;
115  GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
116 
117  GPIO_InitStruct.Pin = LED_LD2_Pin;
118  HAL_GPIO_Init(LED_LD2_Port, &GPIO_InitStruct);
119 
120  GPIO_InitStruct.Pin = LED_LD3_Pin;
121  HAL_GPIO_Init(LED_LD3_Port, &GPIO_InitStruct);
122 
123  __HAL_RCC_GPIOA_CLK_DISABLE();
124  __HAL_RCC_GPIOB_CLK_DISABLE();
125 }
126 
130 void LedLd2On(void)
131 {
132  HAL_GPIO_WritePin(LED_LD2_Port, LED_LD2_Pin, GPIO_PIN_RESET);
133 }
134 
138 void LedLd2Off(void)
139 {
140  HAL_GPIO_WritePin(LED_LD2_Port, LED_LD2_Pin, GPIO_PIN_SET);
141 }
142 
146 void LedLd2Toggle(void)
147 {
148  HAL_GPIO_TogglePin(LED_LD2_Port, LED_LD2_Pin);
149 }
150 
154 void LedLd3On(void)
155 {
156  HAL_GPIO_WritePin(LED_LD3_Port, LED_LD3_Pin, GPIO_PIN_SET);
157 }
158 
162 void LedLd3Off(void)
163 {
164  HAL_GPIO_WritePin(LED_LD3_Port, LED_LD3_Pin, GPIO_PIN_RESET);
165 }
166 
170 void LedLd3Toggle(void)
171 {
172  HAL_GPIO_TogglePin(LED_LD3_Port, LED_LD3_Pin);
173 }
LedLd3Toggle
void LedLd3Toggle(void)
Toggle the status of the LD3 LED.
Definition: hardware.c:170
LED_LD2_Port
#define LED_LD2_Port
Definition: hardware.h:27
LED_LD2_Pin
#define LED_LD2_Pin
Definition: hardware.h:28
LED_LD3_Port
#define LED_LD3_Port
Definition: hardware.h:31
LedLd3Off
void LedLd3Off(void)
Turn off the LD3 LED.
Definition: hardware.c:162
LED_LD3_Pin
#define LED_LD3_Pin
Definition: hardware.h:32
SystemClockConfig
void SystemClockConfig(void)
This function configures the system and peripheral clocks.
Definition: hardware.c:25
LedLd3On
void LedLd3On(void)
Turn on the LD3 LED.
Definition: hardware.c:154
GpioDeinit
void GpioDeinit(void)
This function deinitializes the GPIOs and sets them to analog mode.
Definition: hardware.c:103
error_handler.h
This file contains the error handling function prototypes.
hardware.h
This file contains the hardware-specific definitions and function prototypes.
LedLd2On
void LedLd2On(void)
Turn on the LD2 LED.
Definition: hardware.c:130
LedLd2Off
void LedLd2Off(void)
Turn off the LD2 LED.
Definition: hardware.c:138
LedLd2Toggle
void LedLd2Toggle(void)
Toggle the status of the LD2 LED.
Definition: hardware.c:146
ErrorHandler
void ErrorHandler(void)
This function is executed in case of an error.
Definition: error_handler.c:25
GpioInit
void GpioInit(void)
This function initializes the GPIOs of the LEDs.
Definition: hardware.c:79