summaryrefslogtreecommitdiff
path: root/io-module/mts_eeprom.h
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2016-12-05 17:00:07 -0600
committerJohn Klug <john.klug@multitech.com>2016-12-05 17:00:07 -0600
commit2682d2ab10ddb523999a71014a2c0f7c246e4100 (patch)
tree73bcf2c8059bbb1131ed65a8f038070314ebacec /io-module/mts_eeprom.h
parent765d88576c6dbc9247ce216ca542e52814f09126 (diff)
downloadmts-io-2682d2ab10ddb523999a71014a2c0f7c246e4100.tar.gz
mts-io-2682d2ab10ddb523999a71014a2c0f7c246e4100.tar.bz2
mts-io-2682d2ab10ddb523999a71014a2c0f7c246e4100.zip
Remove wifi-bt and gnss capability flags
Diffstat (limited to 'io-module/mts_eeprom.h')
-rw-r--r--io-module/mts_eeprom.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/io-module/mts_eeprom.h b/io-module/mts_eeprom.h
index f616e83..ec82e0d 100644
--- a/io-module/mts_eeprom.h
+++ b/io-module/mts_eeprom.h
@@ -55,15 +55,14 @@ do { \
#define DEVICE_CAPA_VALUE(index, bit) ((((index) & 0x1F) << 3) | ((bit) & 0x07))
-#define CAPA_COUNT 9 // See also attribute_names in capab.c
+#define CAPA_COUNT 7 // See also attribute_names in capab.c
#define CAPA_GPS DEVICE_CAPA_VALUE(0, 7)
#define CAPA_DIN DEVICE_CAPA_VALUE(0, 6)
#define CAPA_DOUT DEVICE_CAPA_VALUE(0, 5)
#define CAPA_ADC DEVICE_CAPA_VALUE(0, 4)
#define CAPA_BLUETOOTH DEVICE_CAPA_VALUE(1, 7)
+/* Used for rs9113 detection in Conduit 0.1 and others */
#define CAPA_WIFI DEVICE_CAPA_VALUE(1, 6)
-#define CAPA_WIFI_BT DEVICE_CAPA_VALUE(1, 5) // Redpine rs9113
-#define CAPA_GNSS DEVICE_CAPA_VALUE(1, 4) // ublox EVA 7M
#define CAPA_LORA DEVICE_CAPA_VALUE(1, 3) // on-board lora
#endif