I have a working code to get FatFs running with SD card over SPI0 interface on a nRF52840 DK. I wanted to know if it is possible to add another SD card with FatFs on SPI2 interface and access the cards in the same firmware. The file, nrf_block_dev_sdc.h has the following at line 54.
/** * @brief Active SDC block device handle. Only one instance. * */ static nrf_block_dev_sdc_t const * m_active_sdc_dev;
Is it possible to work around this?