我正在尝试使用 STM32F405 芯片写入 MicroSD 卡。
引脚连接正确,并且可以使用 HAL_GPIO_WritePin 写入 MicroSD 卡插槽上的每个引脚。(用示波器测量)我正在使用 CubeMX 为 TrueStudio 生成初始化代码,所以希望那里一切正常。但是当我运行以下代码时, f_mount 返回FR_DISK_ERR
. MicroSD 卡可以写入和读取。如果我使用不同的设备编号,即“1:”,我会得到FR_INVALID_DRIVE
FR_DISK_ERR
所以我的问题是:除了 MicroSD 卡故障之外,还有什么可能导致的?
到目前为止,这是我的代码:
int main(void)
{
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */
/* MCU Configuration----------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
HAL_Init();
/* Configure the system clock */
SystemClock_Config();
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_SDIO_SD_Init();
MX_FATFS_Init();
/* USER CODE BEGIN WHILE */
FATFS fileSystem;
FIL testFile;
uint8_t testBuffer[16] = "SD write success";
UINT testBytes;
FRESULT res;
while((res = f_mount(&fileSystem, SD_MOUNT_PATH, 1)) != FR_OK){
printf("%d", res); //used to debug res, only for TrueStudio Debugger
}
uint8_t path[13] = "testfile.txt";
path[12] = '\0';
res = f_open(&testFile, (char*)path, FA_WRITE | FA_CREATE_ALWAYS);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_6, GPIO_PIN_RESET);
res = f_write(&testFile, testBuffer, 16, &testBytes);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_7, GPIO_PIN_RESET);
res = f_close(&testFile);
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_0, GPIO_PIN_RESET);
}
inMX_FATFS_Init()
FATFS_LinkDriver(&SD_Driver, SD_Path)
被调用并返回 0。