Rev 56 | Rev 58 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 56 | Rev 57 | ||
---|---|---|---|
Line 58... | Line 58... | ||
58 | struct |
58 | struct |
59 | { |
59 | { |
60 | enum PLX_Observations observation :8; |
60 | enum PLX_Observations observation :8; |
61 | int instance :8; |
61 | int instance :8; |
62 | } data; |
62 | } data; |
63 | uint16_t u32; |
63 | uint32_t u32; |
64 | } nvram_info_t; |
64 | } nvram_info_t; |
65 | 65 | ||
66 | typedef struct |
66 | typedef struct |
67 | { |
67 | { |
68 | int Max; |
68 | int Max; |
Line 72... | Line 72... | ||
72 | uint16_t data; |
72 | uint16_t data; |
73 | } info_t; |
73 | } info_t; |
74 | 74 | ||
75 | typedef struct |
75 | typedef struct |
76 | { |
76 | { |
- | 77 | int8_t knobPos; ///< User interface knob position |
|
77 | int OldObservation; |
78 | int16_t OldObservation; |
78 | int OldObservationIndex; |
79 | int16_t OldObservationIndex; |
79 | int16_t dial0; ///< Dial position 0 |
80 | int16_t dial0; ///< Display needle position 0 |
80 | int16_t dial1; ///< Dial position 1 |
81 | int16_t dial1; ///< Display needle position 1 |
81 | int16_t dial_timer; |
82 | uint16_t dial_timer; |
82 | nvram_info_t info; ///< currently selected item |
83 | nvram_info_t info; ///< currently selected item |
83 | } context_t; |
84 | } context_t; |
84 | 85 | ||
85 | extern info_t Info[MAXRDG]; |
86 | extern info_t Info[MAXRDG]; |
86 | 87 |