diff options
author | Jesse Gilles <jgilles@multitech.com> | 2010-12-30 10:25:55 -0600 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2010-12-30 10:25:55 -0600 |
commit | 84e201f0a052648b97b8488a9d302125bf4cf1c2 (patch) | |
tree | 59e3f364b58c3bfbef5378ec288fe802e2ac57dd | |
parent | 87d9d4ca8dc9795391b3bba46165fac4e12f9acc (diff) | |
download | cdp-io-controller-84e201f0a052648b97b8488a9d302125bf4cf1c2.tar.gz cdp-io-controller-84e201f0a052648b97b8488a9d302125bf4cf1c2.tar.bz2 cdp-io-controller-84e201f0a052648b97b8488a9d302125bf4cf1c2.zip |
make TXD1 an input (fixes external serial RX data), bump version to v0.4.1v0.4.1
-rw-r--r-- | io-module/mts_io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c index ac3a388..a921fdd 100644 --- a/io-module/mts_io.c +++ b/io-module/mts_io.c @@ -41,7 +41,7 @@ #include "mts_io.h" -#define DRIVER_VERSION "v0.4.0" +#define DRIVER_VERSION "v0.4.1" #define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>" #define DRIVER_DESC "MTCDP IO Controller" #define DRIVER_NAME "mts-io" @@ -230,7 +230,7 @@ static struct gpio_pin gpio_pins_mtcdp_1_0[] = { { .name = "TXD1", .pin = AT91_PIN_PB17, - .direction = GPIO_DIR_OUTPUT, + .direction = GPIO_DIR_INPUT, .output_value = 0, .use_pullup = 0, }, |