← index #6237Issue #725
Off-topic · high · value 0.951
QUERY · ISSUE

STM32F407 uses FSMC problem

openby hu-luopened 2020-07-10updated 2025-10-03
port-stm32

Hello everyone, I transplant MicroPython to STM32F407. Now I need to use FSMC of STM32F407. but STM32F407 only has FSMC. I see that STM32F429DISC and STM32F769DISC have FMC support. How can I modify STM32F407 to use FSMC or FMC?
Thanks for your help.

CANDIDATE · ISSUE

STM32F407 Discovery Accelerometer Support

closedby napperleyopened 2014-06-28updated 2015-03-12
ports

Is the accelerometer supported on the STM32F407 Discovery? Attempted to run the following code:


import pyb

accel = pyb.Accel()
light = pyb.LED(3)
SENSITIVITY = 3

while True:
    x = accel.x()
    if abs(x) > SENSITIVITY: 
        light.on()
    else:
        light.off()

    pyb.delay(100)

Running the above code results in two LEDs flashing for a few seconds. What is the current status on the STM32F407 Discovery port?

Keyboard

j / / n
next pair
k / / p
previous pair
1 / / h
show query pane
2 / / l
show candidate pane
c
copy suggested comment
r
toggle reasoning
g i
go to index
?
show this help
esc
close overlays

press ? or esc to close

copied