esp8266: Fix UART stop bit constants.

As per the "ESP8266 Technical Reference".
diff --git a/esp8266/uart.h b/esp8266/uart.h
index ebcd8b0..684689a 100644
--- a/esp8266/uart.h
+++ b/esp8266/uart.h
@@ -14,9 +14,9 @@
 } UartBitsNum4Char;
 
 typedef enum {
-    UART_ONE_STOP_BIT             = 0,
-    UART_ONE_HALF_STOP_BIT        = BIT2,
-    UART_TWO_STOP_BIT             = BIT2
+    UART_ONE_STOP_BIT             = 0x1,
+    UART_ONE_HALF_STOP_BIT        = 0x2,
+    UART_TWO_STOP_BIT             = 0x3
 } UartStopBitsNum;
 
 typedef enum {