File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 25
25
26
26
namespace mbed {
27
27
/* * \addtogroup drivers */
28
- /* * A multiple pin digital out
28
+ /* * A multiple pin digital output
29
29
*
30
30
* @note Synchronization level: Interrupt safe
31
31
*
@@ -54,10 +54,10 @@ namespace mbed {
54
54
class PortOut {
55
55
public:
56
56
57
- /* * Create an PortOut, connected to the specified port
57
+ /* * Create a PortOut, connected to the specified port
58
58
*
59
- * @param port Port to connect to (Port0-Port5 )
60
- * @param mask A bitmask to identify which bits in the port should be included (0 - ignore)
59
+ * @param port Port to connect to (as defined in target's PortNames.h )
60
+ * @param mask Bitmask defines which port pins are an output (0 - ignore, 1 - include )
61
61
*/
62
62
PortOut (PortName port, int mask = 0xFFFFFFFF )
63
63
{
@@ -78,7 +78,7 @@ class PortOut {
78
78
/* * Read the value currently output on the port
79
79
*
80
80
* @returns
81
- * An integer with each bit corresponding to associated PortOut pin setting
81
+ * An integer with each bit corresponding to associated pin value
82
82
*/
83
83
int read ()
84
84
{
You can’t perform that action at this time.
0 commit comments