Rev 70 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 70 | Rev 79 | ||
|---|---|---|---|
| Line 19... | Line 19... | ||
| 19 | /// this is expected to be packed into 32 bits |
19 | /// this is expected to be packed into 32 bits |
| 20 | typedef union |
20 | typedef union |
| 21 | { |
21 | { |
| 22 | struct |
22 | struct |
| 23 | { |
23 | { |
| 24 | unsigned tag : 8; |
24 | unsigned tag : 8; // dial tag |
| 25 | unsigned : 8; |
25 | unsigned : 16; // filler |
| 26 | enum PLX_Observations observation : 8; |
26 | int pos: 8; // dial position code |
| 27 | int instance : 8; |
- | |
| 28 | } data; |
27 | } data; |
| 29 | uint32_t u32; |
28 | uint32_t u32; |
| 30 | } nvram_info_t; |
29 | } nvram_info_t; |
| 31 | #pragma pack(pop) |
30 | #pragma pack(pop) |
| 32 | 31 | ||