Crucial RAM: Add 1ms delay between each address tests.

This commit is contained in:
morg
2021-11-18 20:43:26 +01:00
parent e27cc4d0af
commit af3f473843

View File

@@ -218,6 +218,8 @@ void DetectCrucialControllers(std::vector<i2c_smbus_interface*> &busses)
new_controller = new RGBController_Crucial(new_crucial);
ResourceManager::get()->RegisterRGBController(new_controller);
}
std::this_thread::sleep_for(1ms);
}
}
}