Skip to content
Snippets Groups Projects
Commit b87a0f12 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

arduino header: fix pedantic compiler warnings

parent 426816b9
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ extern "C" { ...@@ -34,7 +34,7 @@ extern "C" {
enum { enum {
INPUT, /**< configure pin as input */ INPUT, /**< configure pin as input */
OUTPUT, /**< configure pin as output */ OUTPUT, /**< configure pin as output */
INPUT_PULLUP, /**< configure pin as input with pull-up resistor */ INPUT_PULLUP /**< configure pin as input with pull-up resistor */
}; };
/** /**
...@@ -42,7 +42,7 @@ enum { ...@@ -42,7 +42,7 @@ enum {
*/ */
enum { enum {
LOW = 0, /**< pin is cleared */ LOW = 0, /**< pin is cleared */
HIGH = 1, /**< pin is set */ HIGH = 1 /**< pin is set */
}; };
/** /**
......
...@@ -36,7 +36,7 @@ enum SerialFormat { ...@@ -36,7 +36,7 @@ enum SerialFormat {
BIN, /**< format to binary representation */ BIN, /**< format to binary representation */
OCT, /**< format to octal representation */ OCT, /**< format to octal representation */
DEC, /**< format to decimal representation */ DEC, /**< format to decimal representation */
HEX, /**< format to hex representation */ HEX /**< format to hex representation */
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment