diff --git a/sys/arduino/include/arduino.hpp b/sys/arduino/include/arduino.hpp
index 585a8ef004121c310a9c5a95f5c2031208b6a2f4..883564e1fc04154815c7748953e84f24a66303f8 100644
--- a/sys/arduino/include/arduino.hpp
+++ b/sys/arduino/include/arduino.hpp
@@ -34,7 +34,7 @@ extern "C" {
 enum {
     INPUT,              /**< configure pin as input */
     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 {
     LOW = 0,            /**< pin is cleared */
-    HIGH = 1,           /**< pin is set */
+    HIGH = 1            /**< pin is set */
 };
 
 /**
diff --git a/sys/arduino/include/serialport.hpp b/sys/arduino/include/serialport.hpp
index 6acbb49456f2eb8c30ef17829e76526b1ceb8112..36cc7167a4a7c54a5a0f96d0803db5eb0847a30b 100644
--- a/sys/arduino/include/serialport.hpp
+++ b/sys/arduino/include/serialport.hpp
@@ -36,7 +36,7 @@ enum SerialFormat {
     BIN,            /**< format to binary representation */
     OCT,            /**< format to octal representation */
     DEC,            /**< format to decimal representation */
-    HEX,            /**< format to hex representation */
+    HEX             /**< format to hex representation */
 };
 
 /**