Sorry for the long response about this. I just want to confirm for future readers that this works with this commit.
Search found 22 matches
- Tue Feb 18, 2020 1:13 am
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
- Tue Feb 18, 2020 1:11 am
- Forum: STM32F4 based boards
- Topic: Is there any ported RTOS for STM32F407VE?
- Replies: 12
- Views: 20514
Re: Is there any ported RTOS for STM32F407VE?
Why you do not have a plan?is it hard to port an RTOS?
I don't know how hard is it to port.
But I will not do it because I don't need it.
Why do you need it?
For easily managing timings I lately used this simple tasker: https://github.com/joysfera/arduino-tasker
Well, firstly, I want to ...
- Tue Feb 18, 2020 1:03 am
- Forum: STM32F4 based boards
- Topic: Is there any ported RTOS for STM32F407VE?
- Replies: 12
- Views: 20514
Re: Is there any ported RTOS for STM32F407VE?
but seriously even an event loop may be deemed superfluous, if ray reads this thread, he'd probably agree ;)
many other things has been done without needing an event loop
Demonstration code for several things at the same time
https://forum.arduino.cc/index.php?topic=223286.0
Multi-tasking the ...
- Fri Feb 14, 2020 1:26 pm
- Forum: STM32F4 based boards
- Topic: Is there any ported RTOS for STM32F407VE?
- Replies: 12
- Views: 20514
Re: Is there any ported RTOS for STM32F407VE?
oh..I see, thanks, maybe time can tell.
Why you do not have a plan?is it hard to port an RTOS?
Why you do not have a plan?is it hard to port an RTOS?
- Fri Feb 14, 2020 3:24 am
- Forum: STM32F4 based boards
- Topic: Is there any ported RTOS for STM32F407VE?
- Replies: 12
- Views: 20514
Is there any ported RTOS for STM32F407VE?
Hi there guys,
Is there any available or ported RTOS for STM32F407VE using stevstrong's core?
Thank you.
Is there any available or ported RTOS for STM32F407VE using stevstrong's core?
Thank you.

- Sat Jan 11, 2020 3:45 pm
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
Thanks. I will update you as soon as I have my board again 

- Wed Jan 08, 2020 9:54 am
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
yes it is @stevestrong corefpiSTM wrote: Wed Jan 08, 2020 8:12 am Fine to know that STM32 core is compatible with SDFat fro Greiman.
Anyway, this topic is linked to use it with @stevestrong core for F4, if I'm not wrong?

- Wed Jan 08, 2020 3:12 am
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
This is my working example for your reference.
No modification in the SPI ot SDFat library is needed.
/*
SD card read/write
This example shows how to read and write data to and from an SD card file
The circuit:
SD card attached to SPI bus as follows:
** MOSI - pin 11
** MISO - pin 12 ...
No modification in the SPI ot SDFat library is needed.
/*
SD card read/write
This example shows how to read and write data to and from an SD card file
The circuit:
SD card attached to SPI bus as follows:
** MOSI - pin 11
** MISO - pin 12 ...
- Wed Jan 08, 2020 2:38 am
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
Hi,
I got it working now in different SPI port without commenting the last few line in the SPI.h.
What I did is i place "SPI_3.setModule(3);" before the initialization of sd2.begin.
SPI_3.setModule(3);
I saw this ".setModule()" in the Ethernet_STM32 example and tried in the sd example.
Thank ...
I got it working now in different SPI port without commenting the last few line in the SPI.h.
What I did is i place "SPI_3.setModule(3);" before the initialization of sd2.begin.
SPI_3.setModule(3);
I saw this ".setModule()" in the Ethernet_STM32 example and tried in the sd example.
Thank ...
- Wed Jan 08, 2020 2:34 am
- Forum: STM32F4 based boards
- Topic: STM32F407VE SDfat error compiling
- Replies: 18
- Views: 22102
Re: STM32F407VE SDfat error compiling
Hi @TFTLCDCyg , I tried your suggestion but the response is the same...failed to initialize the sd card.