Top "Stm32" questions

The STM32 is a family of microcontrollers from ST Microelectronics, based on the Cortex M0, M0+, M3, M4, or M7 ARM core (depending on the product line).

Clock configuration of RTC in Stm32L in LSI/LSE/HSE only?

I am implementing Real Time Clock on STM32L152RB Discovery board using IAR compiler. I have implemented the Clock …

c embedded real-time stm32
STM32 rising and falling button interrupt detection

I have button interruption: void EXTI0_IRQHandler(void) { if (EXTI_GetITStatus(EXTI_Line0) != RESET){ if (/* BUTTON IS RELEASED */) { /* do something */ } …

events stm32 interruptions
Does anybody know any very basic stm32 tutorials?

Recently I've started on a project which requires a Cortex M3 processor. I have some previous experience with 8bit AVR …

cortex-m3 stm32
UART over USB for STM32 Micro-controller

I'm trying to implement UART over a USB interface on the STM324x9I-EVAL development board. The purpose is to …

embedded usb stm32 uart usbserial
How generate REAL random number using STM32 MCU?

I'm working on a project with STM32F103E arm cortex-m3 MCU in keil microvision IDE. I need to generate …

c++ random embedded microcontroller stm32
STM32F103 microcontroller CAN messages

I am wondering if anyone is familiar with any STM32f10x micro-controllers? If so, I am having some problems …

c++ c microcontroller can-bus stm32
I2C slave receiver on stm32f4

I try to implement a i2c slave receiver interrupt service routine on a stm32f4. Here is my smart …

embedded interrupt-handling i2c stm32 slave
Disabling the STM32 IWDG during debugging

I have a ChibiOS 3.x program on a STM32F4 microcontroller where I use the IWDG watchdog to reset the …

c stm32 watchdog chibios
How to keep uart RX interrupt enabled forever using HAL library on a STM32F1

I see HAL provides the following function for receiving serial data with interrupts: HAL_UART_Receive_IT(UART_HandleTypeDef *huart, …

c stm32 hal
Stm32 printf float variable

I want to log out from stm32f405 via usart. In my syscall.c file i realize function to print …

printf stm32