diff options
Diffstat (limited to 'btif')
-rw-r--r-- | btif/src/btif_dm.c | 10 | ||||
-rw-r--r-- | btif/src/btif_util.c | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/btif/src/btif_dm.c b/btif/src/btif_dm.c index 7ab03b4..ac46e87 100644 --- a/btif/src/btif_dm.c +++ b/btif/src/btif_dm.c @@ -40,6 +40,7 @@ #include "btif_util.h" #include "btif_storage.h" #include "btif_hh.h" +#include "btif_config.h" /****************************************************************************** ** Constants & Macros @@ -1227,6 +1228,15 @@ static void btif_dm_upstreams_evt(UINT16 event, char* p_param) &bd_addr, BT_ACL_STATE_DISCONNECTED); break; + case BTA_DM_HW_ERROR_EVT: + BTIF_TRACE_ERROR0("Received H/W Error. "); + /* Flush storage data */ + btif_config_flush(); + usleep(100000); /* 100milliseconds */ + /* Killing the process to force a restart as part of fault tolerance */ + kill(getpid(), SIGKILL); + break; + case BTA_DM_AUTHORIZE_EVT: case BTA_DM_SIG_STRENGTH_EVT: case BTA_DM_SP_RMT_OOB_EVT: diff --git a/btif/src/btif_util.c b/btif/src/btif_util.c index da23361..5539c11 100644 --- a/btif/src/btif_util.c +++ b/btif/src/btif_util.c @@ -275,6 +275,7 @@ const char* dump_dm_event(UINT16 event) CASE_RETURN_STR(BTA_DM_BLE_LOCAL_ER_EVT) CASE_RETURN_STR(BTA_DM_BLE_AUTH_CMPL_EVT) CASE_RETURN_STR(BTA_DM_DEV_UNPAIRED_EVT) + CASE_RETURN_STR(BTA_DM_HW_ERROR_EVT) default: return "UNKNOWN DM EVENT"; |