diff options
author | John Klug <john.klug@multitech.com> | 2018-08-15 18:06:02 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-08-15 18:06:02 -0500 |
commit | 3847d09480ba4804369e7883925baae73b4d0037 (patch) | |
tree | 70b297612f519bb33c24326d06f05fcfd16c61a1 /io-module/mts-io.c | |
parent | f577933549e8f4d2d2c9b4b046732c481288c26f (diff) | |
download | mts-io-3847d09480ba4804369e7883925baae73b4d0037.tar.gz mts-io-3847d09480ba4804369e7883925baae73b4d0037.tar.bz2 mts-io-3847d09480ba4804369e7883925baae73b4d0037.zip |
Fix LNA3/LEU3 Radio Reset times fixing Verizon on Telit 20.00.12 FW2.2.1
Diffstat (limited to 'io-module/mts-io.c')
-rw-r--r-- | io-module/mts-io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/io-module/mts-io.c b/io-module/mts-io.c index 180a7b0..d127fe2 100644 --- a/io-module/mts-io.c +++ b/io-module/mts-io.c @@ -570,6 +570,7 @@ static int get_radio_model_from_product_id(void) { if (strstr(id_eeprom.product_id, "LEU1")) rc = RADIO_LEU1; else if (strstr(id_eeprom.product_id, "LNA3")) rc = RADIO_LNA3; + else if (strstr(id_eeprom.product_id, "LEU3")) rc = RADIO_LEU3; // Add other radios as needed. return rc; |