QUERY · ISSUE
STM32F407 uses FSMC problem
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
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?