2018-03-04 08:51 PM
I am working with STM32F746G-Disco board to prove out the use of the SD card. I am at a point where I cannot get the code to write data to the card using the fs calls. First, I have setup the board in CubeMX with all the peripherals for the disco board initialized although I am only working with the FATfs, SD card and the screen for debug. The Cube project file is attached. The code is working up to the point where f_open is called but f_open does not seem to return. The code looks like this:
/* USER CODE BEGIN 5 */
sdres = BSP_SD_Init(); if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 94, (uint8_t *)'SD Init status Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 94, (uint8_t *)'SD Init status Fail', LEFT_MODE);sdres = f_mount(&sdFatfs, '', 0);
if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD mount Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD mount Failed', LEFT_MODE);sdres = f_open(&sdFile, 'test.txt', FA_OPEN_ALWAYS|FA_WRITE|FA_READ);
if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD open Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD open Failed', LEFT_MODE);sdres = f_lseek(&sdFile, sizeof(&sdFile));
if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD seek Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD seek Failed', LEFT_MODE);sdres = f_printf(&sdFile, '%s', buffSDwr);
if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD print Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD print Failed', LEFT_MODE);sdres = f_close(&sdFile);
if (sdres == FR_OK) BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD close Pass', LEFT_MODE); else BSP_LCD_DisplayStringAt(0, 124, (uint8_t *)'SD close Failed', LEFT_MODE);The sdFile, sdFatfs, sdres, and buff... variables are all global to main.c being declared in the USER PV area.
When this runs, the LCD screen prints
SD Init status Pass
SD mount Pass
after which nothing else appears. It is also interesting to note that if I set break points at the f_open call and just after the call, the debugger stops at f_open but when I click run to go to the next break point the execution pointer simply stops at the f_open call again. ODD! If i place the cursor a couple of lines down and select run to cursor, the same thing happens. If I try to step over the f_open line the debugger ends up at the first instruction in the tick handler. I have exhausted all the posts, youtube tutorials, and blogs and nothing has settled the issue.
2018-03-09 12:18 AM
Cube only generates the skeleton of DMA and SDMMC. By generating the Code it looks like everything is done completey by selecting DMA, NVIC and SDMMC but it does not Link them and config them completely.
looking at example:
STM32Cube_FW_L4_V1.10.0\Projects\STM32L476G_EVAL\Applications\FatFs\FatFs_uSD_DMA_RTOS
in file stm32l476g_eval_sd.c its pretty clear what to do.
Cube only generates MX_DMA_init() end enables Nvic but it does not config the dma in order to transmit data to SD card.
check out the SD_DMAConfigTx / SD_DMAConfigRx functions in the end of the file I mentioned and you see my point. Hasnt had time to test it, but i am pretty sure thats why DMA Interrupt doesnt fire.
2018-03-19 03:00 AM
i have a solution/workaround for SD Card/ DMA and postet it on