STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

NOR memory internal address

Posted on October 22, 2015 at 11:47Hello,I would like to program an external flash (S29GL128S10) connected to the STM32F429 at address 0x64000000  using the ST-LINK Utility. I didn't find an external Loader for this need so I am trying to create it ...

STMStudio and STLink-V2.1

Posted on October 22, 2015 at 10:58Hello, STMStudio seems to have not received any update since last year and so does not support STLink-V2.1. Is support for STLink V2.1 planned or is STMStudio EOL?

STM32 USB OTG and uc20

Posted on October 20, 2015 at 10:18HiI use stm32f429-discovery board. I want to use uc20  (GPS/GPRS) module.uc20 has usb interface. I want to connect uc20 to stm32f429 with usb interface. I dont now how to develop driver.also uc20 has multi interfac...

DMA only sending one byte and not whole buffer

Posted on October 21, 2015 at 14:43 STM32f30x The aim is to trigger the DMA from a timer. The DMA should then send one row of data from my buffer to the SPI. The DMA should then trigger an interrupt which points DMA to the next row in the bu...

JustMe by Associate II
  • 2491 Views
  • 9 replies
  • 0 kudos

STm32F4 Mac address

Posted on October 22, 2015 at 08:40Hello, could someone confirm that STM32 processors do not have a hardcoded unique MAC address?

matas by Associate II
  • 390 Views
  • 1 replies
  • 0 kudos

Bug report: Error in EXTI initialization on STM32L052

Posted on October 18, 2015 at 23:29Hi all,lost one day finding that this line 259 from stm32l0xx_hal_gpio.c is missing some braces:bad (current):temp &= ~((uint32_t)0x0F) << (4 * (position & 0x03));right (should be):temp &= ~(((uint32_t)0x0F) << (4 ...

osama2 by Associate II
  • 545 Views
  • 3 replies
  • 0 kudos

LOCK OF UART API

Posted on October 22, 2015 at 11:13Hi, thanks for your code .but I found that when transmit data use HAL_UART_Transmit, the lock of uart api will cause HAL_UART_Receive_IT can't receive data.how to slove it?