mirror of https://github.com/ARMmbed/mbed-os.git
Disallow doxygen to render protected and private members
parent
710af8f09b
commit
9dd24f92c2
|
@ -105,7 +105,7 @@ public:
|
|||
protected:
|
||||
DigitalIn* _pin[16];
|
||||
|
||||
/** Mask of bus's NC pins
|
||||
/* Mask of bus's NC pins
|
||||
* If bit[n] is set to 1 - pin is connected
|
||||
* if bit[n] is cleared - pin is not connected (NC)
|
||||
*/
|
||||
|
|
|
@ -125,7 +125,7 @@ protected:
|
|||
virtual void unlock();
|
||||
DigitalInOut* _pin[16];
|
||||
|
||||
/** Mask of bus's NC pins
|
||||
/* Mask of bus's NC pins
|
||||
* If bit[n] is set to 1 - pin is connected
|
||||
* if bit[n] is cleared - pin is not connected (NC)
|
||||
*/
|
||||
|
|
|
@ -109,7 +109,7 @@ protected:
|
|||
virtual void unlock();
|
||||
DigitalOut* _pin[16];
|
||||
|
||||
/** Mask of bus's NC pins
|
||||
/* Mask of bus's NC pins
|
||||
* If bit[n] is set to 1 - pin is connected
|
||||
* if bit[n] is cleared - pin is not connected (NC)
|
||||
*/
|
||||
|
|
|
@ -117,7 +117,7 @@ public:
|
|||
|
||||
private:
|
||||
|
||||
/** Check if address and size are aligned to a sector
|
||||
/* Check if address and size are aligned to a sector
|
||||
*
|
||||
* @param addr Address of block to check for alignment
|
||||
* @param size Size of block to check for alignment
|
||||
|
|
|
@ -89,11 +89,11 @@ public:
|
|||
|
||||
protected:
|
||||
|
||||
/** Acquire exclusive access to this serial port
|
||||
/* Acquire exclusive access to this serial port
|
||||
*/
|
||||
virtual void lock(void);
|
||||
|
||||
/** Release exclusive access to this serial port
|
||||
/* Release exclusive access to this serial port
|
||||
*/
|
||||
virtual void unlock(void);
|
||||
};
|
||||
|
|
|
@ -135,8 +135,8 @@ protected:
|
|||
virtual void handler();
|
||||
|
||||
protected:
|
||||
timestamp_t _delay; /**< Time delay (in microseconds) for re-setting the multi-shot callback. */
|
||||
Callback<void()> _function; /**< Callback. */
|
||||
timestamp_t _delay; /* Time delay (in microseconds) for re-setting the multi-shot callback. */
|
||||
Callback<void()> _function; /* Callback. */
|
||||
};
|
||||
|
||||
} // namespace mbed
|
||||
|
|
Loading…
Reference in New Issue