Watchdog Timer In STM32

Overview In this tutorial, we will see how to use IWDG (Independent Monitor) and WWDG (Window Monitor) in STM32. Both monitors are used for a similar purpose, but the difference is in their implementation. The main difference between the two is that a standalone watcher can be reset at any time before it times out,…

Read More

STM32 Realtime Clock Example

Real-time clock A real-time clock (RTC) is an electronic device (most often in the form of an integrated circuit) that measures the passage of time. Although the term often refers to the devices in the personal computer, servers and embedded system, RTCs are present in almost any electronic device which needs to keep accurate time. Components Required: STM32F303CB/STM32 blue pill boards –…

Read More

How to use ADC in STM32F103C8T6/STM32F303

A/D Converters (ADC) In this tutorial, I will show you how to use ADC in STM32F303CBT6/STM32F103C8T6 to measure the Input Analog Voltages. Analog to Digital Converters (ADC) translate analog electrical signals for data processing purposes. With products matching performance, power, cost, and size needs, Analog Devices offers the industry’s largest A/D converter portfolio. As the…

Read More

How To Receive UART Serial Data With STM32 – Interrupt – Polling

HAL. USART. Data transfer In this tutorial, we’ll be discussing the USART / UART hardware in STM32 microcontrollers. Starting with an introduction to UART serial communication. And we’ll get a closer look at the STM32 USART hardware module and its internal functionalities, modes of operation, options, and configurations. In conclusion, we’ll take a look at the possible…

Read More

PROGRAM STM32 WITH UART

Program STM32F4 with UART STM32F3 devices have a great feature. They can be programmed with the only USB to UART converter. Each device has a bootloader inside, which supports UART programming. This is not a very great method for Discovery boards, because they have a better and faster solution onboard, ST-link. But if you are…

Read More