STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

I am using Nucleo-32 with STM32F042K6 and trying to use flash (32KB, 1K pages). I can erase, read right each page starting at page 18 (18,432) up through page 31 (31,744), except page 21 (21,504). Page 21 hard faults on erase.

-Using the HAL in STM32 Cube IDE.-I can examine the FLASH pointer in the hard fault ISR and the registers appear to be just like when accessing any other page.-I am unlocking the Flash and the option bytes.-I have not modified the option bytes.-It do...

RGord.2 by Associate II
  • 730 Views
  • 5 replies
  • 0 kudos

VREF+ drops when DAC is used (STM32G0)

I use a LM4040 voltage reference IC to generate a 3.00V reference voltage for the STM32G0 VREF+ pin. The resistor is 750 ohms, so 4mA can be sourced to the VREF+ pin (the datasheet specifies a minimum of 500 uA). I use the STM32G0 DAC (channel 1 only...

JLemi by Associate III
  • 1776 Views
  • 8 replies
  • 0 kudos

STM32 Database communication ?

Hi everyone ,İs there any library to communication with db ? Which one db is does not matter .PS: Of course LWIP already implemented.

YAlya.1 by Associate
  • 643 Views
  • 3 replies
  • 0 kudos

RTC on STM32H745

Hi, We are using a STM32H745 in our project. Over the past few days, I've been wasting a lot of time figuring out why RTC has a major error ... it always runs slower than it should. To be sure we tried to used the crystal and the capacities present i...

DMast.1 by Associate II
  • 1697 Views
  • 6 replies
  • 0 kudos

Resolved! Clocks configuration - STM32F429

Hi everyone, I try to understand more deeply the the whole clocks issue and how each frequency affects the running time. My board is STM32F429, and the clock configuration set by default (maximum values). This is the best configuration for fast runni...

AS.5 by Associate II
  • 1425 Views
  • 3 replies
  • 0 kudos

Why that complicated UART baudrate formula for STM32F1

In RM0008 cha 27.3.4 talks of " Fractional baud rate generation" and goes at length with examples of those fractional number. If the "fractional" stuff is broken down to integers, it boils down that simply baud = f(clk) / BRR.Or, as libopencm3 write...