Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit a33114d

Browse files
authored
Update SMART.hpp
1 parent 77fc49f commit a33114d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

C++/Headers/SMART/SMART.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ struct SmartAttribute {
4545
}
4646
return rawValue;
4747
}
48-
48+
// The names here are approximate and may vary between manufacturers or different models.
4949
inline std::string GetAttributeName() const {
5050
switch (Id) {
5151
// Common attributes (HDD & SSD)
@@ -82,7 +82,7 @@ struct SmartAttribute {
8282
case 0xA3:
8383
return "Total LBAs Written";
8484
case 0xA7:
85-
return "SSD Life Left";
85+
return "Average Erase Count or SSD Life Left";
8686
case 0xA9:
8787
return "SSD Life Left (Alternative)";
8888
case 0xAB:
@@ -98,7 +98,7 @@ struct SmartAttribute {
9898
case 0xB0:
9999
return "Erase Fail Count (Alternative)";
100100
case 0xB1:
101-
return "Wear Range Delta";
101+
return "Wear Range Delta Or Wear Leveling Count";
102102
case 0xB3:
103103
return "Used Reserved Block Count Total";
104104
case 0xB4:
@@ -912,3 +912,4 @@ ScanAllDrives(int maxDrives = 8,
912912
namespace HV {
913913
namespace SMART = smart_reader;
914914
}
915+

0 commit comments

Comments
 (0)