I am trying to test the fatfs example (SDK14) using the 10056 DK.
I do nothing modification and it results in...
<info> app: FATFS example started.
<info> app: Initializing disk 0 (SDC)...
<info> app: Capacity: 59400 MB
<info> app: Mounting volume...
<info> app: Mount failed.
I saw that the problem occurs in this line, but I dont know tha reason.
NRF_LOG_INFO("Mounting volume...");
ff_result = f_mount(&fs, "", 1);
if (ff_result)
{
NRF_LOG_INFO("Mount failed.");
return;
}
In sdk_config.h I chenged the #define NRFX_SPIM_MISO_PULL_CFG to 0 and added a pulldown in the MISO.
Anyone has this same problem?