We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee1f70 commit 852ef17Copy full SHA for 852ef17
src/Partitioning.h
@@ -19,10 +19,23 @@ struct Partition {
19
20
struct __attribute__((packed)) mbrEntry {
21
uint8_t status;
22
+ /**
23
+ * @brief The starting CHS (Cylinder-Head-Sector) address of the partition.
24
+ */
25
uint8_t chsStart[3];
26
uint8_t type;
27
28
+ * @brief The ending CHS (Cylinder-Head-Sector) address of the partition.
29
30
uint8_t chsStop[3];
31
+
32
33
+ * @brief The logical block address offset of the partition.
34
35
uint32_t lbaOffset;
36
37
+ * @brief The size of each Logical Block Address (LBA) in bytes.
38
39
uint32_t lbaSize;
40
};
41
0 commit comments