Before running the FatalErrorRecovery test you must do the following:

* Modify BluetoothInterfaceC::CancelBond() within bluetooth.cpp
  Comment out "status = BtHalCancelBond(pBdAddr);"
  Add in code to turn the bluetooth chip off and on for 10ms
  Example shown below:

  	int BluetoothInterfaceC::CancelBond(const Btbdaddr *pBdAddr)
	{
	    BluetoothHhStatus status = BTHH_OK;

	    BTHAL_IF_DEBUG("called");
	    //status = BtHalCancelBond(pBdAddr);
	    bluetoothGpioPowerEnable(false);
        nn::os::SleepThread(nn::TimeSpan::FromMilliSeconds(10));
	    bluetoothGpioPowerEnable(true);
	    return status;
	}

* Rebuild the bluetooth process