cancel
Showing results for 
Search instead for 
Did you mean: 

How/ Where can i download stm32 cube mx version 4.21?

Apill
Senior

I am working with SD card in SDIO mode. The current version of cube mx i.e, 4.27 is not working. Some people in the community posted that after version 4.21 SD card issue is persistent. so i would like to download 4.22

Youtube link I have followed:

https://www.youtube.com/watch?v=Y5UMTGQDmog&t=523s

hardware used:

https://www.amazon.com/Mciro-Memory-Shield-Module-Board/dp/B0797LG1CY/ref=asc_df_B0797LG1CY/?tag=hyprod-20&linkCode=df0&hvadid=241935719665&hvpos=1o2&hvnetw=g&hvrand=11359505135560567974&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9013830&hvtargid=pla-422072932282&psc=1

kit: Discovery f429.

https://www.amazon.com/32F429IDISCOVERY-STM32F429I-DISCO-Discovery-STM32F429ZIT6-Development/dp/B01EJ3GEJO

Basic code :

FATFS myFATFS;

FIL myFILE;

UINT testByte;

if(f_mount(&myFATFS,SDPath,1)==FR_OK)

{

HAL_GPIO_TogglePin(GPIOG,GPIO_PIN_14);

char myPath [] = "WRITE1.TXT\0";

f_open(&myFILE, myPath, FA_WRITE | FA_CREATE_ALWAYS);

char myData[]= "Hello World\0";

f_write(&myFILE, myData, sizeof(myData), &testByte);

f_close(&myFILE);

HAL_Delay(1000);

HAL_GPIO_TogglePin(GPIOG, GPIO_PIN_13);

}

1 ACCEPTED SOLUTION

Accepted Solutions

https://community.st.com/s/question/0D50X00009XkYVDSA3/please-provide-a-way-to-download-older-version-of-the-cube

SDIO interface clashes with LCD on STM32F429-DISCO, the original STM32F4-DISCO is a different board.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

1 REPLY 1

https://community.st.com/s/question/0D50X00009XkYVDSA3/please-provide-a-way-to-download-older-version-of-the-cube

SDIO interface clashes with LCD on STM32F429-DISCO, the original STM32F4-DISCO is a different board.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..