HyperX controller to use DIMM_DETECTOR

This commit is contained in:
Milan Čermák
2024-12-23 07:26:58 +00:00
committed by Adam Honse
parent 560ff5ab33
commit a2867e151d
5 changed files with 72 additions and 80 deletions

View File

@@ -52,6 +52,15 @@ uint16_t SPDWrapper::jedec_id()
return accessor->jedec_id();
}
uint8_t SPDWrapper::manufacturer_data(uint16_t index)
{
if(accessor == nullptr)
{
return 0x00;
}
return accessor->manufacturer_data(index);
}
/*-------------------------------------------------------------------------*\
| Helper functions for easier collection handling. |
\*-------------------------------------------------------------------------*/