aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'wirish/io.h')
-rw-r--r--wirish/io.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/wirish/io.h b/wirish/io.h
index 4aa1eef..647e79c 100644
--- a/wirish/io.h
+++ b/wirish/io.h
@@ -1,4 +1,4 @@
-/* *****************************************************************************
+/******************************************************************************
* The MIT License
*
* Copyright (c) 2010 Perry Hung.
@@ -20,12 +20,12 @@
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
- * ****************************************************************************/
+ *****************************************************************************/
/**
* @file io.h
*
- * @brief
+ * @brief Arduino-compatible digital pin I/O interface.
*/
#ifndef _IO_H
@@ -38,7 +38,6 @@
extern "C"{
#endif
-
typedef enum WiringPinMode {
OUTPUT,
OUTPUT_OPEN_DRAIN,
@@ -85,7 +84,7 @@ uint32 digitalRead(uint8);
* to INPUT_ANALOG
* analogRead(pin)
* pin -> {A0-A16}
- * */
+ */
uint32 analogRead(uint8);
#ifdef __cplusplus