STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! STM32H745 FLASH does not store the data?

Hi,I write some data to the 0x080A0000 (sector 5 )address which is not protected. I write the data and ı can read that data too. There is no problem with that. But if I comment out the line which writes to data to the flash and run the program. That ...

EOzde.1 by Associate III
  • 1075 Views
  • 6 replies
  • 1 kudos

When PWM output through TIM2 channel 1 on STM32G061G6U6 is enabled, the data register of ADC1 sometimes stores high values (~4095) even if there is no signal being fed to it.

Here is the configuration I use:int main(void) { HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_ADC1_Init(); MX_TIM2_Init(); // configure PWM __HAL_TIM_SET_AUTORELOAD(&htim2, 1000); __HAL_TIM_SET_COMPARE(&htim2, TIM_CHANNEL_1...

PIvan.9 by Associate II
  • 2639 Views
  • 13 replies
  • 0 kudos

SNMP Agent implemention

Hello,I want to implement the SNMP agent based on standalone, not based on os.I could have got a example code for snmp agent?Thank.

Kim.Andy by Associate III
  • 2261 Views
  • 1 replies
  • 0 kudos

Resolved! Character match on STM32F303K8

Hello,I'm trying to set up the character match interrupt to detect the character '\n' (which indicates the end of a packet) and I don't manage to get the interruption.The procedure I'm using is:initialize the uart, its gpios, and the dma.enable the u...