File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ class BusIn {
105
105
protected:
106
106
DigitalIn* _pin[16 ];
107
107
108
- /* * Mask of bus's NC pins
108
+ /* Mask of bus's NC pins
109
109
* If bit[n] is set to 1 - pin is connected
110
110
* if bit[n] is cleared - pin is not connected (NC)
111
111
*/
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ class BusInOut {
125
125
virtual void unlock ();
126
126
DigitalInOut* _pin[16 ];
127
127
128
- /* * Mask of bus's NC pins
128
+ /* Mask of bus's NC pins
129
129
* If bit[n] is set to 1 - pin is connected
130
130
* if bit[n] is cleared - pin is not connected (NC)
131
131
*/
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ class BusOut {
109
109
virtual void unlock ();
110
110
DigitalOut* _pin[16 ];
111
111
112
- /* * Mask of bus's NC pins
112
+ /* Mask of bus's NC pins
113
113
* If bit[n] is set to 1 - pin is connected
114
114
* if bit[n] is cleared - pin is not connected (NC)
115
115
*/
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class FlashIAP {
117
117
118
118
private:
119
119
120
- /* * Check if address and size are aligned to a sector
120
+ /* Check if address and size are aligned to a sector
121
121
*
122
122
* @param addr Address of block to check for alignment
123
123
* @param size Size of block to check for alignment
Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ class RawSerial: public SerialBase {
89
89
90
90
protected:
91
91
92
- /* * Acquire exclusive access to this serial port
92
+ /* Acquire exclusive access to this serial port
93
93
*/
94
94
virtual void lock (void );
95
95
96
- /* * Release exclusive access to this serial port
96
+ /* Release exclusive access to this serial port
97
97
*/
98
98
virtual void unlock (void );
99
99
};
Original file line number Diff line number Diff line change @@ -135,8 +135,8 @@ class Ticker : public TimerEvent {
135
135
virtual void handler ();
136
136
137
137
protected:
138
- timestamp_t _delay; /* *< Time delay (in microseconds) for re-setting the multi-shot callback. */
139
- Callback<void ()> _function; /* *< Callback. */
138
+ timestamp_t _delay; /* Time delay (in microseconds) for re-setting the multi-shot callback. */
139
+ Callback<void ()> _function; /* Callback. */
140
140
};
141
141
142
142
} // namespace mbed
You can’t perform that action at this time.
0 commit comments