diff options
| author | John Klug <john.klug@multitech.com> | 2019-09-03 17:29:57 -0500 |
|---|---|---|
| committer | John Klug <john.klug@multitech.com> | 2019-09-03 17:29:57 -0500 |
| commit | 46434822dcdce23bec6b55488e7a030f2cf28a9d (patch) | |
| tree | 416563e284db3c6f1626baca18b69ebfd3509fa3 /io-module/machine | |
| parent | 751d733a6cde13817fc584209070393716df4b9a (diff) | |
| download | mts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.tar.gz mts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.tar.bz2 mts-io-46434822dcdce23bec6b55488e7a030f2cf28a9d.zip | |
Bluetooth and WiFi enable are active high
Diffstat (limited to 'io-module/machine')
| -rw-r--r-- | io-module/machine/mtcdt3.c | 4 |
1 files changed, 2 insertions, 2 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", |
