Skip to content

Commit

Permalink
change type in ScanParameters getters
Browse files Browse the repository at this point in the history
  • Loading branch information
matkammusic committed May 22, 2024
1 parent 17a03ab commit 3746f5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connectivity/FEATURE_BLE/include/ble/gap/ScanParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ class ScanParameters {
/**
* Get the scan interval.
*/
const scan_window_t &getInterval() const
const scan_interval_t &getInterval() const
{
return interval;
}

/**
* Get the scan window.
*/
const scan_interval_t &getWindow() const
const scan_window_t &getWindow() const
{
return window;
}
Expand Down

0 comments on commit 3746f5a

Please sign in to comment.