pub async fn install(driver: impl FatFsDriver + 'static)Expand description
Installs a driver for the file system. Only one driver can be installed at a time.
The driver must implement the FatFsDriver trait.
The driver is placed on the heap using Box so that it lives for the lifetime of
the program.