mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Revision:
81:7d30d6019079
Parent:
65:5798e58a58b1
Child:
85:024bf7f99721
--- a/DigitalOut.h	Fri Feb 21 12:21:39 2014 +0000
+++ b/DigitalOut.h	Wed Mar 19 18:28:32 2014 +0000
@@ -46,7 +46,16 @@
      *  @param pin DigitalOut pin to connect to
      */
     DigitalOut(PinName pin) {
-        gpio_init(&gpio, pin, PIN_OUTPUT);
+        gpio_init_out(&gpio, pin);
+    }
+
+    /** Create a DigitalOut connected to the specified pin
+     *
+     *  @param pin DigitalOut pin to connect to
+     *  @param value the initial pin value
+     */
+    DigitalOut(PinName pin, int value){
+        gpio_init_out_ex(&gpio, pin, value);
     }
 
     /** Set the output, specified as 0 or 1 (int)