summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--cc3200/bootmgr/main.c2
-rw-r--r--cc3200/mods/modwlan.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/cc3200/bootmgr/main.c b/cc3200/bootmgr/main.c
index ee8a32d347..7929f1648a 100644
--- a/cc3200/bootmgr/main.c
+++ b/cc3200/bootmgr/main.c
@@ -53,7 +53,7 @@
//*****************************************************************************
// Local Constants
//*****************************************************************************
-#define SL_STOP_TIMEOUT 500
+#define SL_STOP_TIMEOUT 250
#define BOOTMGR_HASH_ALGO SHAMD5_ALGO_MD5
#define BOOTMGR_HASH_SIZE 32
#define BOOTMGR_BUFF_SIZE 512
diff --git a/cc3200/mods/modwlan.c b/cc3200/mods/modwlan.c
index 4a19205685..013437a046 100644
--- a/cc3200/mods/modwlan.c
+++ b/cc3200/mods/modwlan.c
@@ -130,7 +130,7 @@ typedef struct _wlan_obj_t {
#define ASSERT_ON_ERROR( x ) ASSERT((x) >= 0 )
#define IPV4_ADDR_STR_LEN_MAX (16)
-#define SL_STOP_TIMEOUT 500
+#define SL_STOP_TIMEOUT 250
#define WLAN_MAX_RX_SIZE 16000
@@ -501,7 +501,7 @@ void wlan_sl_disable (void) {
xSemaphoreTake (xWlanSemaphore, portMAX_DELAY);
#endif
wlan_obj.mode = -1;
- ASSERT_ON_ERROR (sl_Stop(SL_STOP_TIMEOUT));
+ sl_Stop(SL_STOP_TIMEOUT);
}
}
@@ -551,7 +551,7 @@ STATIC void wlan_reenable (SlWlanMode_t mode) {
#ifdef USE_FREERTOS
xSemaphoreTake (xWlanSemaphore, portMAX_DELAY);
#endif
- ASSERT_ON_ERROR(sl_Stop(SL_STOP_TIMEOUT));
+ sl_Stop(SL_STOP_TIMEOUT);
wlan_obj.mode = sl_Start(0, 0, 0);
#ifdef USE_FREERTOS
xSemaphoreGive (xWlanSemaphore);