summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gilles <jgilles@multitech.com>2014-02-28 16:20:36 -0600
committerJesse Gilles <jgilles@multitech.com>2014-02-28 16:20:36 -0600
commitb119f2ff94356d4b77e6b7fe233bbec33aee358c (patch)
tree4bec243395de10d6c46604de7ca5f8ce591c542e
parenta006066f4a22954d5ab87549175111e4612a14dd (diff)
downloadcdp-io-controller-b119f2ff94356d4b77e6b7fe233bbec33aee358c.tar.gz
cdp-io-controller-b119f2ff94356d4b77e6b7fe233bbec33aee358c.tar.bz2
cdp-io-controller-b119f2ff94356d4b77e6b7fe233bbec33aee358c.zip
mtocgd: increase wait for telit radio to power off
Old delay was too short and would always use reset line
-rw-r--r--io-module/mts_io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c
index d36f721..f7d53e5 100644
--- a/io-module/mts_io.c
+++ b/io-module/mts_io.c
@@ -1426,7 +1426,8 @@ static int radio_off_telit(void)
return ret;
}
- msleep(200);
+ // wait for radio to power off
+ msleep(5000);
// check that power is low
value = at91_get_gpio_value(pwrmon_pin->pin);