memLayout() improved clock speed detection (windows)
This commit is contained in:
+1
-1
@@ -510,7 +510,7 @@ function memLayout(callback) {
|
||||
bank: util.getValue(lines, 'abel', '='), // BankLabel
|
||||
type: memoryTypes[parseInt(util.getValue(lines, 'MemoryType', '='), 10)],
|
||||
ecc: dataWidth && totalWidth ? totalWidth > dataWidth : false,
|
||||
clockSpeed: parseInt(util.getValue(lines, 'ConfiguredClockSpeed', '='), 10) || 0,
|
||||
clockSpeed: parseInt(util.getValue(lines, 'ConfiguredClockSpeed', '='), 10) || parseInt(util.getValue(lines, 'Speed', '='), 10) || 0,
|
||||
formFactor: FormFactors[parseInt(util.getValue(lines, 'FormFactor', '='), 10) || 0],
|
||||
manufacturer: util.getValue(lines, 'Manufacturer', '='),
|
||||
partNum: util.getValue(lines, 'PartNumber', '='),
|
||||
|
||||
Reference in New Issue
Block a user