File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ class BusIn {
83
83
protected:
84
84
DigitalIn* _pin[16 ];
85
85
86
- /* * Mask of NC pins, if bit [n] bit is set to 1, [n] pin in bus is in NC state
86
+ /* * Mask of bus's NC pins
87
+ * If bit[n] is set to 1 - pin is connected
88
+ * if bit[n] is cleared - pin is not connected (NC)
87
89
*/
88
90
int _nc_mask;
89
91
Original file line number Diff line number Diff line change @@ -98,7 +98,9 @@ class BusInOut {
98
98
protected:
99
99
DigitalInOut* _pin[16 ];
100
100
101
- /* * Mask of NC pins, if bit [n] bit is set to 1, [n] pin in bus is in NC state
101
+ /* * Mask of bus's NC pins
102
+ * If bit[n] is set to 1 - pin is connected
103
+ * if bit[n] is cleared - pin is not connected (NC)
102
104
*/
103
105
int _nc_mask;
104
106
Original file line number Diff line number Diff line change @@ -86,7 +86,9 @@ class BusOut {
86
86
protected:
87
87
DigitalOut* _pin[16 ];
88
88
89
- /* * Mask of NC pins, if bit [n] bit is set to 1, [n] pin in bus is in NC state
89
+ /* * Mask of bus's NC pins
90
+ * If bit[n] is set to 1 - pin is connected
91
+ * if bit[n] is cleared - pin is not connected (NC)
90
92
*/
91
93
int _nc_mask;
92
94
You can’t perform that action at this time.
0 commit comments