summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2019-09-03 17:29:57 -0500
committerJohn Klug <john.klug@multitech.com>2019-09-03 17:29:57 -0500
commit46434822dcdce23bec6b55488e7a030f2cf28a9d (patch)
tree416563e284db3c6f1626baca18b69ebfd3509fa3
parent751d733a6cde13817fc584209070393716df4b9a (diff)
downloadmts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.tar.gz
mts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.tar.bz2
mts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.zip
Bluetooth and WiFi enable are active high
-rw-r--r--io-module/machine/mtcdt3.c4
-rw-r--r--io-module/mts_io_module.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/io-module/machine/mtcdt3.c b/io-module/machine/mtcdt3.c
index 2fd5637..030d7d2 100644
--- a/io-module/machine/mtcdt3.c
+++ b/io-module/machine/mtcdt3.c
@@ -52,7 +52,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.label = "wlan-enabled",
},
.capability = CAPA_WIFI,
- .active_low = 1,
+ .active_low = 0,
},
{
.name = "BT_RESET",
@@ -62,7 +62,7 @@ static struct gpio_pin gpio_pins_mtcdt3[] = {
.label = "bt-enabled",
},
.capability = CAPA_BLUETOOTH,
- .active_low = 1,
+ .active_low = 0,
},
{
.name = "USBHUB_RESET",
diff --git a/io-module/mts_io_module.h b/io-module/mts_io_module.h
index e0455be..7527025 100644
--- a/io-module/mts_io_module.h
+++ b/io-module/mts_io_module.h
@@ -5,7 +5,7 @@
* MTAC cards.
*/
-#define DRIVER_VERSION "v4.1.8"
+#define DRIVER_VERSION "v4.1.9"
#define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>"
#define DRIVER_DESC "MTS-IO Controller"
#define DRIVER_NAME "mts-io"