Update memory speed

This commit is contained in:
MacRimi
2026-02-13 12:30:27 +01:00
parent 20ee9da1ec
commit a686360c1f
3 changed files with 17 additions and 4 deletions

View File

@@ -4258,8 +4258,10 @@ def get_hardware_info():
current_module['size'] = 0 # Default to 0 if no size or explicitly 'No Module Installed'
elif line.startswith('Type:'):
current_module['type'] = line.split(':', 1)[1].strip()
elif line.startswith('Configured Memory Speed:'):
current_module['configured_speed'] = line.split(':', 1)[1].strip()
elif line.startswith('Speed:'):
current_module['speed'] = line.split(':', 1)[1].strip()
current_module['max_speed'] = line.split(':', 1)[1].strip()
elif line.startswith('Manufacturer:'):
current_module['manufacturer'] = line.split(':', 1)[1].strip()
elif line.startswith('Serial Number:'):