Skip to content

Commit 9dd24f9

Browse files
committed
Disallow doxygen to render protected and private members
1 parent 710af8f commit 9dd24f9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

drivers/BusIn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class BusIn {
105105
protected:
106106
DigitalIn* _pin[16];
107107

108-
/** Mask of bus's NC pins
108+
/* Mask of bus's NC pins
109109
* If bit[n] is set to 1 - pin is connected
110110
* if bit[n] is cleared - pin is not connected (NC)
111111
*/

drivers/BusInOut.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class BusInOut {
125125
virtual void unlock();
126126
DigitalInOut* _pin[16];
127127

128-
/** Mask of bus's NC pins
128+
/* Mask of bus's NC pins
129129
* If bit[n] is set to 1 - pin is connected
130130
* if bit[n] is cleared - pin is not connected (NC)
131131
*/

drivers/BusOut.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class BusOut {
109109
virtual void unlock();
110110
DigitalOut* _pin[16];
111111

112-
/** Mask of bus's NC pins
112+
/* Mask of bus's NC pins
113113
* If bit[n] is set to 1 - pin is connected
114114
* if bit[n] is cleared - pin is not connected (NC)
115115
*/

drivers/FlashIAP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class FlashIAP {
117117

118118
private:
119119

120-
/** Check if address and size are aligned to a sector
120+
/* Check if address and size are aligned to a sector
121121
*
122122
* @param addr Address of block to check for alignment
123123
* @param size Size of block to check for alignment

drivers/RawSerial.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ class RawSerial: public SerialBase {
8989

9090
protected:
9191

92-
/** Acquire exclusive access to this serial port
92+
/* Acquire exclusive access to this serial port
9393
*/
9494
virtual void lock(void);
9595

96-
/** Release exclusive access to this serial port
96+
/* Release exclusive access to this serial port
9797
*/
9898
virtual void unlock(void);
9999
};

drivers/Ticker.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ class Ticker : public TimerEvent {
135135
virtual void handler();
136136

137137
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. */
140140
};
141141

142142
} // namespace mbed

0 commit comments

Comments
 (0)