STM32 MCUs products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

TIMER Interrupt and Other Interrupt

Hello All, I am progressing toward my goal. I am bit banging a GPIO port every 2 uS based on a Byte buffer. I can not use SPI because I need to send a predefine number of bit that is not 8 aligned. So I use a timer and every UIF event I reset the GPI...

vbesson by Associate III
  • 131 Views
  • 8 replies
  • 1 kudos

Resolved! I have a problem with the interrupt callback. The interrupt event is correctly detected but when the code enter into the callback function it excecute just the first line of the code wrot between the curly brackets.

void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ if(GPIO_Pin == LVMS_DETECT_Pin) { HAL_GPIO_WritePin(AMS_LED_GPIO_Port, AMS_LED_Pin, GPIO_PIN_SET); HAL_Delay(2000); HAL_GPIO_WritePin(AMS_LED_GPIO_Port, AMS_LED_Pin, GPIO_PIN_RESET); }}When the trigg...

GMart.7 by Associate II
  • 2310 Views
  • 10 replies
  • 0 kudos

Bootloader DFU on STM32F439ZITx

Hi everyone, I'm developing a bootloader that works like this. I was inspired by the example: https://github.com/pramodk51/bootloader_for_stm32f4.  I developed this initially on Nucleo F439ZI for the test phase and I managed to implement it with the ...

memory_map.png

USART interrupt handling in Rust

Hi, I'm new to embedded (as in one week old) and am trying to build a small system to do a few things for an optical product we're building: mainly temp measurement (Omega SA1-RTD with MAX31865) and LED management for optical lasers. Currently I have...

sekhar by Associate II
  • 814 Views
  • 14 replies
  • 6 kudos

Resolved! Syncronous Timers

Hi,I'm running two timers on STM32F303 which do square wave output on two hardware pins. They are clocked by the 72MHz internal clock. They count down to 0 and reload from ARR register, which sets the output frequency. The two timers run perfectly sy...

DetlefS by Associate III
  • 334 Views
  • 4 replies
  • 1 kudos

STM32F4 LoRa E220-400T30S Communication

I got 2 STM32F446VET7 MCU board and I am trying to communicate each other with LoRa E220-400T30S.I cannot found any usefull libraries so I am trying to write one.I can communicate with modules from UART and setting configuration parameters.Both E22 m...

testbenchmark_0-1722767477601.png
Labels