STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Incorrect interrupt time

Hi everyone,I'm using Nucleo H723 board. I have used 8 timers in encoder mode to read the encoders. I have also activated another timer to make an interrupt every 4ms to send the data via Usart.everything work good but when I use sprint code to put t...

0693W00000KaQ7ZQAV.png
Nmo.1 by Associate III
  • 1800 Views
  • 7 replies
  • 0 kudos

Ambiguous data over MISO Line SPI Communication (Master mode).

Hi all,I am using STM32F334 for SPI communication with a TDC7201 chip from TI.I am using the Low-Level Drivers to initialize the driver and communicate. Here is my initialisation routine: __HAL_RCC_SPI1_CLK_ENABLE();   LL_SPI_InitTypeDef SPI1I...

0693W00000KaEQFQA3.png 0693W00000KaET9QAN.png
AT.8 by Associate II
  • 2301 Views
  • 15 replies
  • 0 kudos

Resolved! Sending USART message via interrupt using registers

Hello,I am working on a college project and struggle with sending a message to the virtual terminal using USART interrupt.I work with following code:void UART_Send (uint8_t *buffer){ USART1->CR1 |= USART_CR1_TXEIE; // Enable TXE Interrupt USART1-...

UMilo.1 by Associate III
  • 2650 Views
  • 9 replies
  • 0 kudos

Resolved! No timer interrrupt after switch to user application

STM32G473VC, custom board.I use an own bootloader which resides at address 0x00000000 , the user application resides at 0x00008000. I did set external files correct to use the bootloader in user applicationsystem_stm32g4xx.c : #define VECT_TAB_OFFSET...

0693W00000KZvjDQAT.png
sde c.1 by Senior II
  • 2550 Views
  • 11 replies
  • 0 kudos

Hello, I am trying to measure the power consumption of the STM32U575ZI microcontroller on the Nucleo-144 board but the results are much higher than expected.

 I am using an ammeter connected instead of the JP5 jumper, as indicated in the manual (UM2861) and tried several examples.For example: in PWR_EnterStopMode example I see around 568uA on the ammeter.From the datasheet I expected to measure around 100...

AEstr.1 by Associate
  • 1114 Views
  • 3 replies
  • 0 kudos

Resolved! Set software interrupt with its own priority?

MCU STM32F765GZMy Problem:EXTI_LINE_0-4 has separate IRQ handlers but al are occupied.EXTI_LINE_5-9 share the same IRQhandler and also priority. pin 6 is needed with prio 1(brownout mon)EXTI_LINE_10-15 share the same IRQhandler and also priority. pin...