summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2016-10-04 19:09:12 -0500
committerJohn Klug <john.klug@multitech.com>2016-10-04 19:09:12 -0500
commit73554f37a373ba4e667a50aa775a2d1445720fa7 (patch)
treea7da32f61c18207656eb07c657d688df49cbdfac
parentb12ea5539f3cf68338d8ccc55a6e4d7062df8411 (diff)
downloadmts-io-73554f37a373ba4e667a50aa775a2d1445720fa7.tar.gz
mts-io-73554f37a373ba4e667a50aa775a2d1445720fa7.tar.bz2
mts-io-73554f37a373ba4e667a50aa775a2d1445720fa7.zip
fix driver level, and list WIFI_BT and GNSS capabilities
-rw-r--r--io-module/mts_io.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c
index 290226e..582276a 100644
--- a/io-module/mts_io.c
+++ b/io-module/mts_io.c
@@ -47,7 +47,7 @@
#include "mts_io.h"
-#define DRIVER_VERSION "v1.1.4"
+#define DRIVER_VERSION "v1.3.4"
#define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>"
#define DRIVER_DESC "MTS-IO Controller"
#define DRIVER_NAME "mts-io"
@@ -838,6 +838,9 @@ static int mts_id_eeprom_load()
log_info("capa-adc: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_ADC) ? "yes" : "no");
log_info("capa-wifi: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_WIFI) ? "yes" : "no");
log_info("capa-bluetooth: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_BLUETOOTH) ? "yes" : "no");
+ log_info("capa-wifi-bluetooth: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_WIFI_BT) ? "yes" : "no");
+ log_info("capa-gnss: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_GNSS) ? "yes" : "no");
+
if (DEVICE_CAPA(id_eeprom.capa, CAPA_BLUETOOTH)) {
log_info("mac-bluetooth: %02X:%02X:%02X:%02X:%02X:%02X",
id_eeprom.mac_bluetooth[0],