1. 03 7月, 2014 26 次提交
  2. 24 5月, 2014 1 次提交
  3. 16 5月, 2014 3 次提交
  4. 10 5月, 2014 1 次提交
  5. 08 5月, 2014 1 次提交
  6. 06 5月, 2014 1 次提交
  7. 28 3月, 2014 3 次提交
  8. 27 3月, 2014 4 次提交
    • J
      Bluetooth: Store also RSSI for pending advertising reports · ff5cd29f
      Johan Hedberg 提交于
      Especially in crowded environments it can become frequent that we have
      to send out whatever pending event there is stored. Since user space
      has its own filtering of small RSSI changes sending a 0 value will
      essentially force user space to wake up the higher layers (e.g. over
      D-Bus) even though the RSSI didn't actually change more than the
      threshold value.
      
      This patch adds storing also of the RSSI for pending advertising reports
      so that we report an as accurate RSSI as possible when we have to send
      out the stored information to user space.
      Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      ff5cd29f
    • J
      Bluetooth: Fix line splitting of mgmt_device_found parameters · 73cf71d9
      Johan Hedberg 提交于
      The line was incorrectly split between the variable type and its name.
      This patch fixes the issue.
      Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      73cf71d9
    • J
      Bluetooth: Merge ADV_IND/ADV_SCAN_IND and SCAN_RSP together · b9a6328f
      Johan Hedberg 提交于
      To avoid too many events being sent to user space and to help parsing of
      all available remote device data it makes sense for us to wait for the
      scan response and send a single merged Device Found event to user space.
      
      This patch adds a few new variables to hci_dev to track the last
      received ADV_IND/ADV_SCAN_IND, i.e. those which will cause a SCAN_REQ to
      be send in the case of active scanning. When the SCAN_RSP is received
      the pending data is passed together with the SCAN_RSP to the
      mgmt_device_found function which takes care of merging them into a
      single Device Found event.
      
      We also need a bit of extra logic to handle situations where we don't
      receive a SCAN_RSP after caching some data. In such a scenario we simply
      have to send out the pending data as it is and then operate on the new
      report as if there was no pending data.
      
      We also need to send out any pending data when scanning stops as
      well as ensure that the storage is empty at the start of a new active
      scanning session. These both cases are covered by the update to the
      hci_cc_le_set_scan_enable function in this patch.
      Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      b9a6328f
    • J
      Bluetooth: Add directed advertising support through connect() · 3c857757
      Johan Hedberg 提交于
      When we're in peripheral mode (HCI_ADVERTISING flag is set) the most
      natural mapping of connect() is to perform directed advertising to the
      peer device.
      
      This patch does the necessary changes to enable directed advertising and
      keeps the hci_conn state as BT_CONNECT in a similar way as is done for
      central or BR/EDR connection initiation.
      Signed-off-by: NJohan Hedberg <johan.hedberg@intel.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      3c857757