Disallow doxygen to render protected and private members

pull/4111/head
Sam Grove 2017-04-12 11:48:02 -05:00
parent 710af8f09b
commit 9dd24f92c2
6 changed files with 8 additions and 8 deletions

View File

@ -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)
*/

View File

@ -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)
*/

View File

@ -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)
*/

View File

@ -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

View File

@ -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);
};

View File

@ -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