arduino header: fix pedantic compiler warnings

This commit is contained in:
Oleg Hahm 2015-11-28 12:46:09 +01:00
parent 426816b9ae
commit b87a0f12b0
2 changed files with 3 additions and 3 deletions

View File

@ -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 {
*/ */
enum { enum {
LOW = 0, /**< pin is cleared */ LOW = 0, /**< pin is cleared */
HIGH = 1, /**< pin is set */ HIGH = 1 /**< pin is set */
}; };
/** /**

View File

@ -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 */
}; };
/** /**