diff options
author | John Klug <john.klug@multitech.com> | 2017-09-07 08:57:28 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-09-07 08:58:48 -0500 |
commit | 4234fef3a7eefce240ea218f93d1786de4465f65 (patch) | |
tree | fb0ef7836a37ab1d2bc74f26cc28197f28b28fa1 /io-module | |
parent | 775409ce208968f2bca379301a3fa2a2418cdb70 (diff) | |
download | mts-io-4234fef3a7eefce240ea218f93d1786de4465f65.tar.gz mts-io-4234fef3a7eefce240ea218f93d1786de4465f65.tar.bz2 mts-io-4234fef3a7eefce240ea218f93d1786de4465f65.zip |
Prevent MTCAP-0.0 being announced as MTCAP-0.11.5.16
Diffstat (limited to 'io-module')
-rw-r--r-- | io-module/mts_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c index 697852a..ebb1b22 100644 --- a/io-module/mts_io.c +++ b/io-module/mts_io.c @@ -860,7 +860,7 @@ mts_id_eeprom_load(void) if (DEVICE_CAPA(id_eeprom.capa, CAPA_LORA)) { attr_group_lora = &mtcap_0_0_lora_attribute_group; } - log_info("detected board %s", HW_VERSION_MTCAP_0_1); + log_info("detected board %s", tmp); } else if (strncmp(id_eeprom.hw_version, HW_VERSION_MTR_0_0, strlen(HW_VERSION_MTR_0_0)) == 0) { attr_group = &mtr_platform_attribute_group; gpio_pins = gpio_pins_mtr_0_0; |