sysclk: fix typo and add way to change kip editing path

This commit is contained in:
souldbminersmwc
2025-12-14 10:24:39 -05:00
parent bb7f0c8f5f
commit d76cd2e8f9
4 changed files with 47 additions and 16 deletions

View File

@@ -83,9 +83,9 @@ extern "C"
setsysExit();
}
rc = fanInitialize();
if (R_FAILED(rc))
diagAbortWithResult(MAKERESULT(Module_Libnx, LibnxError_ShouldNotHappen));
// rc = fanInitialize();
// if (R_FAILED(rc))
// diagAbortWithResult(MAKERESULT(Module_Libnx, LibnxError_ShouldNotHappen));
rc = i2cInitialize();
if (R_FAILED(rc))
@@ -95,7 +95,7 @@ extern "C"
void __appExit(void)
{
CloseFanControllerThread();
fanExit();
// fanExit();
i2cExit();
fsExit();
fsdevUnmountAll();
@@ -126,10 +126,10 @@ int main(int argc, char** argv)
clockMgr->SetRunning(true);
clockMgr->GetConfig()->SetEnabled(true);
ipcSrv->SetRunning(true);
TemperaturePoint *table;
ReadConfigFile(&table);
InitFanController(table);
StartFanControllerThread();
// TemperaturePoint *table;
// ReadConfigFile(&table);
// InitFanController(table);
// StartFanControllerThread();
while (clockMgr->Running())
{