mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-14 07:04:24 -04:00
fusee_cpp: various fixes, unpatched erista boots now
This commit is contained in:
parent
e5106ffa2c
commit
596f5c3f52
8 changed files with 1032 additions and 68 deletions
|
@ -81,6 +81,14 @@ namespace ams::nxboot {
|
|||
return sdmmc::Activate(SdCardPort);
|
||||
}
|
||||
|
||||
void FinalizeSdCard() {
|
||||
/* Deactivate the SD card. */
|
||||
sdmmc::Deactivate(SdCardPort);
|
||||
|
||||
/* Finalize the SD card. */
|
||||
sdmmc::Finalize(SdCardPort);
|
||||
}
|
||||
|
||||
Result CheckSdCardConnection(sdmmc::SpeedMode *out_sm, sdmmc::BusWidth *out_bw) {
|
||||
return sdmmc::CheckSdCardConnection(out_sm, out_bw, SdCardPort);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue