Skip to content

Commit c837726

Browse files
josh-connerCQ Bot Account
authored and
CQ Bot Account
committed
pw_bluetooth_sapphire: Add field to LowEnergyScanResult
Add periodic_advertising_interval to LowEnergyScanResult. This field will be populated by LE Extended Advertising Report events, and will default to 0 (No periodic advertising). Also add advertising_sid and periodic_advertising_interval to FakePeer to allow for testing the population of these values from advertising reports. Bug: 372944638 Test: pw presubmit --step gn_chre_googletest_nanopb_sapphire_build Change-Id: Ib54f5d32bfb7cf8553c0c495dc585c055548e682 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/279052 Reviewed-by: Sarah Bodin <sarahbodin@google.com> Lint: Lint 🤖 <android-build-ayeaye@system.gserviceaccount.com> Commit-Queue: Josh Conner <joshconner@google.com> Docs-Not-Needed: Josh Conner <joshconner@google.com>
1 parent d2241c7 commit c837726

File tree

6 files changed

+45
-2
lines changed

6 files changed

+45
-2
lines changed

pw_bluetooth_sapphire/host/hci-spec/public/pw_bluetooth_sapphire/internal/host/hci-spec/constants.h

+3
Original file line numberDiff line numberDiff line change
@@ -668,6 +668,9 @@ inline constexpr int8_t kRSSIInvalid = 127;
668668
// Invalid advertising sid value
669669
inline constexpr uint8_t kAdvertisingSidInvalid = 0xFF;
670670

671+
// Invalid periodic advertising interval
672+
inline constexpr uint16_t kPeriodicAdvertisingIntervalInvalid = 0x0000;
673+
671674
// The maximum length of a friendly name that can be assigned to a BR/EDR
672675
// controller, in octets.
673676
inline constexpr size_t kMaxNameLength = bt::kMaxNameLength;

pw_bluetooth_sapphire/host/hci/extended_low_energy_scanner.cc

+2
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ void ExtendedLowEnergyScanner::OnExtendedAdvertisingReportEvent(
248248
result.set_rssi(rssi);
249249
result.set_tx_power(report.tx_power().Read());
250250
result.set_advertising_sid(report.advertising_sid().Read());
251+
result.set_periodic_advertising_interval(
252+
report.periodic_advertising_interval().Read());
251253

252254
// If the next set of data exceeds the maximum allowed in an extended
253255
// advertising data payload, take as much as we can and report it back.

pw_bluetooth_sapphire/host/hci/extended_low_energy_scanner_test.cc

+11
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ const DeviceAddress kPublicAddr1(DeviceAddress::Type::kLEPublic, {1});
4545
const DeviceAddress kPublicAddr2(DeviceAddress::Type::kLEPublic, {2});
4646
const DeviceAddress kPublicAddr3(DeviceAddress::Type::kLEPublic, {3});
4747

48+
constexpr uint8_t kAdvertisingSid = 0xa;
49+
constexpr uint16_t kPeriodicAdvertisingInterval = 0x1234;
50+
4851
class ExtendedLowEnergyScannerTest : public TestingBase,
4952
public LowEnergyScanner::Delegate {
5053
public:
@@ -67,17 +70,22 @@ class ExtendedLowEnergyScannerTest : public TestingBase,
6770
scanner_->SetPacketFilters(0, {});
6871
scanner_->set_delegate(this);
6972

73+
// peers(0)
7074
auto p = std::make_unique<FakePeer>(kPublicAddr1, dispatcher(), true, true);
7175
p->set_use_extended_advertising_pdus(true);
7276
p->set_advertising_data(kPlainAdvDataBytes);
7377
p->set_scan_response(kPlainScanRspBytes);
7478
peers_.push_back(std::move(p));
7579

80+
// peers(1)
7681
p = std::make_unique<FakePeer>(kPublicAddr2, dispatcher(), true, false);
7782
p->set_use_extended_advertising_pdus(true);
7883
p->set_advertising_data(kPlainAdvDataBytes);
84+
p->set_advertising_sid(kAdvertisingSid);
85+
p->set_periodic_advertising_interval(kPeriodicAdvertisingInterval);
7986
peers_.push_back(std::move(p));
8087

88+
// peers(2)
8189
p = std::make_unique<FakePeer>(kPublicAddr3, dispatcher(), true, false);
8290
p->set_use_extended_advertising_pdus(true);
8391
p->set_advertising_data(kPlainAdvDataBytes);
@@ -159,6 +167,9 @@ TEST_F(ExtendedLowEnergyScannerTest, ParseAdvertisingReportsSingleReport) {
159167
EXPECT_EQ(peer(1)->address(), result.address());
160168
EXPECT_EQ(peer(1)->advertising_data().size(), result.data().size());
161169
EXPECT_EQ(peer(1)->advertising_data(), result.data());
170+
EXPECT_EQ(result.advertising_sid(), kAdvertisingSid);
171+
EXPECT_EQ(result.periodic_advertising_interval(),
172+
kPeriodicAdvertisingInterval);
162173
});
163174

164175
RunUntilIdle();

pw_bluetooth_sapphire/host/hci/public/pw_bluetooth_sapphire/internal/host/hci/low_energy_scanner.h

+12
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ class LowEnergyScanResult {
5353
uint8_t advertising_sid() const { return advertising_sid_; }
5454
void set_advertising_sid(uint8_t value) { advertising_sid_ = value; }
5555

56+
uint16_t periodic_advertising_interval() const {
57+
return periodic_advertising_interval_;
58+
}
59+
void set_periodic_advertising_interval(uint16_t value) {
60+
periodic_advertising_interval_ = value;
61+
}
62+
5663
BufferView data() const { return buffer_.view(0, data_size_); }
5764
void AppendData(const ByteBuffer& data);
5865

@@ -79,6 +86,11 @@ class LowEnergyScanResult {
7986
// advertisement, used to synchronize against a periodic advertising train
8087
uint8_t advertising_sid_ = hci_spec::kAdvertisingSidInvalid;
8188

89+
// Interval of periodic advertisements, in increments of 1.25 ms, specified in
90+
// the LE extended advertising report.
91+
uint16_t periodic_advertising_interval_ =
92+
hci_spec::kPeriodicAdvertisingIntervalInvalid;
93+
8294
// The size of the data so far accumulated in |buffer_|.
8395
size_t data_size_ = 0u;
8496

pw_bluetooth_sapphire/host/testing/fake_peer.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,10 @@ void FakePeer::FillExtendedAdvertisingReport(
330330
pw::bluetooth::emboss::LEPrimaryAdvertisingPHY::LE_1M);
331331
report.secondary_phy().Write(
332332
pw::bluetooth::emboss::LESecondaryAdvertisingPHY::NONE);
333-
report.advertising_sid().Write(0);
333+
report.advertising_sid().Write(advertising_sid());
334334
report.tx_power().Write(tx_power());
335335
report.rssi().Write(rssi());
336-
report.periodic_advertising_interval().Write(0);
336+
report.periodic_advertising_interval().Write(periodic_advertising_interval());
337337

338338
// skip direct_address_type and direct_address for now since we don't use it
339339

pw_bluetooth_sapphire/host/testing/public/pw_bluetooth_sapphire/internal/host/testing/fake_peer.h

+15
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ class FakePeer {
9595
int8_t rssi() const { return -1; }
9696
int8_t tx_power() const { return -2; }
9797

98+
// LE extended advertising attributes
99+
uint8_t advertising_sid() const { return advertising_sid_; }
100+
void set_advertising_sid(uint8_t value) { advertising_sid_ = value; }
101+
102+
uint16_t periodic_advertising_interval() const {
103+
return periodic_advertising_interval_;
104+
}
105+
void set_periodic_advertising_interval(uint16_t value) {
106+
periodic_advertising_interval_ = value;
107+
}
108+
98109
// The local name of the device. Used in HCI Remote Name Request event.
99110
std::string name() const { return name_; }
100111
void set_name(const std::string& name) { name_ = name; }
@@ -254,6 +265,10 @@ class FakePeer {
254265
bool use_extended_advertising_pdus_ = false;
255266
bool send_advertising_report_;
256267

268+
uint8_t advertising_sid_ = bt::hci_spec::kAdvertisingSidInvalid;
269+
uint16_t periodic_advertising_interval_ =
270+
bt::hci_spec::kPeriodicAdvertisingIntervalInvalid;
271+
257272
pw::bluetooth::emboss::StatusCode connect_status_;
258273
pw::bluetooth::emboss::StatusCode connect_response_;
259274
bool force_pending_connect_; // Causes connection requests to remain pending.

0 commit comments

Comments
 (0)