Skip to content

Commit f1a7802

Browse files
committed
Add tags to our code
1 parent 2cea844 commit f1a7802

File tree

144 files changed

+663
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+663
-0
lines changed

drivers/AnalogIn.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
#include "platform/PlatformMutex.h"
2626

2727
namespace mbed {
28+
/** \addtogroup drivers */
29+
/** @{*/
2830

2931
/** An analog input, used for reading the voltage on a pin
3032
*
@@ -126,3 +128,5 @@ class AnalogIn {
126128
#endif
127129

128130
#endif
131+
132+
/** @}*/

drivers/AnalogOut.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include "platform/PlatformMutex.h"
2525

2626
namespace mbed {
27+
/** \addtogroup drivers */
28+
/** @{*/
2729

2830
/** An analog output, used for setting the voltage on a pin
2931
*
@@ -144,3 +146,5 @@ class AnalogOut {
144146
#endif
145147

146148
#endif
149+
150+
/** @}*/

drivers/BusIn.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#include "platform/PlatformMutex.h"
2222

2323
namespace mbed {
24+
/** \addtogroup drivers */
25+
/** @{*/
2426

2527
/** A digital input bus, used for reading the state of a collection of pins
2628
*
@@ -102,3 +104,5 @@ class BusIn {
102104
} // namespace mbed
103105

104106
#endif
107+
108+
/** @}*/

drivers/BusInOut.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include "platform/PlatformMutex.h"
2121

2222
namespace mbed {
23+
/** \addtogroup drivers */
24+
/** @{*/
2325

2426
/** A digital input output bus, used for setting the state of a collection of pins
2527
*
@@ -121,3 +123,5 @@ class BusInOut {
121123
} // namespace mbed
122124

123125
#endif
126+
127+
/** @}*/

drivers/BusOut.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include "platform/PlatformMutex.h"
2121

2222
namespace mbed {
23+
/** \addtogroup drivers */
24+
/** @{*/
2325

2426
/** A digital output bus, used for setting the state of a collection of pins
2527
*/
@@ -105,3 +107,5 @@ class BusOut {
105107
} // namespace mbed
106108

107109
#endif
110+
111+
/** @}*/

drivers/CAN.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
#include "platform/PlatformMutex.h"
2626

2727
namespace mbed {
28+
/** \addtogroup drivers */
29+
/** @{*/
2830

2931
/** CANMessage class
3032
*
@@ -256,3 +258,5 @@ class CAN {
256258
#endif
257259

258260
#endif // MBED_CAN_H
261+
262+
/** @}*/

drivers/DigitalIn.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include "platform/critical.h"
2323

2424
namespace mbed {
25+
/** \addtogroup drivers */
26+
/** @{*/
2527

2628
/** A digital input, used for reading the state of a pin
2729
*
@@ -113,3 +115,5 @@ class DigitalIn {
113115
} // namespace mbed
114116

115117
#endif
118+
119+
/** @}*/

drivers/DigitalInOut.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include "platform/critical.h"
2323

2424
namespace mbed {
25+
/** \addtogroup drivers */
26+
/** @{*/
2527

2628
/** A digital input/output, used for setting or reading a bi-directional pin
2729
*
@@ -138,3 +140,5 @@ class DigitalInOut {
138140
} // namespace mbed
139141

140142
#endif
143+
144+
/** @}*/

drivers/DigitalOut.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#include "platform/critical.h"
2222

2323
namespace mbed {
24+
/** \addtogroup drivers */
25+
/** @{*/
2426

2527
/** A digital output, used for setting the state of a pin
2628
*
@@ -124,3 +126,5 @@ class DigitalOut {
124126
} // namespace mbed
125127

126128
#endif
129+
130+
/** @}*/

drivers/DirHandle.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ struct dirent {
3131
};
3232

3333
namespace mbed {
34+
/** \addtogroup drivers */
35+
/** @{*/
3436

3537
/** Represents a directory stream. Objects of this type are returned
3638
* by a FileSystemLike's opendir method. Implementations must define
@@ -118,3 +120,5 @@ extern "C" {
118120
};
119121

120122
#endif /* MBED_DIRHANDLE_H */
123+
124+
/** @}*/

0 commit comments

Comments
 (0)