fix Kingston Fury DDR5 detection (#4479)

This commit is contained in:
Peter Berendi 2024-12-19 14:32:40 +00:00 committed by Adam Honse
parent 1bfd0fbd1f
commit 2a9b7c8115

View file

@ -399,7 +399,9 @@ bool DDR5DirectAccessor::isAvailable(i2c_smbus_interface *bus, uint8_t spd_addr)
while(true)
{
std::this_thread::sleep_for(SPD_IO_DELAY);
int ddr5Magic = bus->i2c_smbus_read_byte_data(spd_addr, 0x00);
std::this_thread::sleep_for(SPD_IO_DELAY);
int ddr5Sensor = bus->i2c_smbus_read_byte_data(spd_addr, 0x01);
std::this_thread::sleep_for(SPD_IO_DELAY);