Page 1 of 1

F411 DMAMEM keyword?

Posted: Tue Apr 21, 2020 3:17 pm
by Hackswell
Using STM32duino libs (pre-release 1.9.0 from git) on a "BlackPill F411CE", I was wondering if there were something similar to the DMAMEM keyword that some of the other boards use? I'm trying to move a project from the Teensy3.2 to the F411CE. Thanks!

Re: F411 DMAMEM keyword?

Posted: Tue Apr 21, 2020 3:26 pm
by stas2z
simply

Code: Select all

#define DMAMEM
explanation
teensy have a bit different memory organisation
in case of stm32 there is no reason for it

Re: F411 DMAMEM keyword?

Posted: Tue Apr 21, 2020 3:27 pm
by Hackswell
Thank you much!