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:
|
protected:
|
||||||
DigitalIn* _pin[16];
|
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 set to 1 - pin is connected
|
||||||
* if bit[n] is cleared - pin is not connected (NC)
|
* if bit[n] is cleared - pin is not connected (NC)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -125,7 +125,7 @@ protected:
|
||||||
virtual void unlock();
|
virtual void unlock();
|
||||||
DigitalInOut* _pin[16];
|
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 set to 1 - pin is connected
|
||||||
* if bit[n] is cleared - pin is not connected (NC)
|
* if bit[n] is cleared - pin is not connected (NC)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -109,7 +109,7 @@ protected:
|
||||||
virtual void unlock();
|
virtual void unlock();
|
||||||
DigitalOut* _pin[16];
|
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 set to 1 - pin is connected
|
||||||
* if bit[n] is cleared - pin is not connected (NC)
|
* if bit[n] is cleared - pin is not connected (NC)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -117,7 +117,7 @@ public:
|
||||||
|
|
||||||
private:
|
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 addr Address of block to check for alignment
|
||||||
* @param size Size of block to check for alignment
|
* @param size Size of block to check for alignment
|
||||||
|
|
|
@ -89,11 +89,11 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/** Acquire exclusive access to this serial port
|
/* Acquire exclusive access to this serial port
|
||||||
*/
|
*/
|
||||||
virtual void lock(void);
|
virtual void lock(void);
|
||||||
|
|
||||||
/** Release exclusive access to this serial port
|
/* Release exclusive access to this serial port
|
||||||
*/
|
*/
|
||||||
virtual void unlock(void);
|
virtual void unlock(void);
|
||||||
};
|
};
|
||||||
|
|
|
@ -135,8 +135,8 @@ protected:
|
||||||
virtual void handler();
|
virtual void handler();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
timestamp_t _delay; /**< Time delay (in microseconds) for re-setting the multi-shot callback. */
|
timestamp_t _delay; /* Time delay (in microseconds) for re-setting the multi-shot callback. */
|
||||||
Callback<void()> _function; /**< Callback. */
|
Callback<void()> _function; /* Callback. */
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace mbed
|
} // namespace mbed
|
||||||
|
|
Loading…
Reference in New Issue