On my protoboard, the 4-bit mode does not work
So I use the 1-bit mode when working on C++ (which works at any speed)
Is it possible to use the 1-bit mode on Oopsy?
/** Sets whether 4-bit mode or 1-bit mode is used for the SDMMC */
enum class BusWidth
{
BITS_1, /**< Only 1 bit of data per clock is transferred */
BITS_4, /**< 4-bits of parallel data for each clock pulse */
};