linebreaks

pull/6239/head
Brendan McDonnell 2018-03-21 10:17:51 -04:00
parent 895e19ae0f
commit 8d2214fa6e
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ public:
* @param pin InterruptIn pin to connect to * @param pin InterruptIn pin to connect to
*/ */
InterruptIn(PinName pin); InterruptIn(PinName pin);
/** Create an InterruptIn connected to the specified pin, /** Create an InterruptIn connected to the specified pin,
* and the pin configured to the specified mode. * and the pin configured to the specified mode.
* *
@ -73,6 +74,7 @@ public:
* @param mode The mode to set the pin to (PullUp/PullDown/etc.) * @param mode The mode to set the pin to (PullUp/PullDown/etc.)
*/ */
InterruptIn(PinName pin, PinMode mode); InterruptIn(PinName pin, PinMode mode);
virtual ~InterruptIn(); virtual ~InterruptIn();
/** Read the input, represented as 0 or 1 (int) /** Read the input, represented as 0 or 1 (int)