Skip to content

Commit

Permalink
NimBLEScan: Add isScanning method.
Browse files Browse the repository at this point in the history
Adds a method to check if the scan is currently running.

* Clear up some NimBLEScan method parameter semantics.
  • Loading branch information
h2zero committed Jul 24, 2020
1 parent e0e940a commit bad29ee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
17 changes: 13 additions & 4 deletions src/NimBLEScan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ void NimBLEScan::setActiveScan(bool active) {
* @details The controller has a limited buffer and will start reporting
* dupicate devices once the limit is reached.
*/
void NimBLEScan::setDuplicateFilter(bool active) {
m_scan_params.filter_duplicates = active;
void NimBLEScan::setDuplicateFilter(bool enabled) {
m_scan_params.filter_duplicates = enabled;
} // setDuplicateFilter


Expand All @@ -178,8 +178,8 @@ void NimBLEScan::setDuplicateFilter(bool active) {
* from devices advertising in limited discovery mode, i.e. directed advertising.
* @param [in] active If true, only limited discovery devices will be in scan results.
*/
void NimBLEScan::setLimitedOnly(bool active) {
m_scan_params.limited = active;
void NimBLEScan::setLimitedOnly(bool enabled) {
m_scan_params.limited = enabled;
} // setLimited


Expand Down Expand Up @@ -236,6 +236,15 @@ void NimBLEScan::setWindow(uint16_t windowMSecs) {
} // setWindow


/**
* @brief Get the status of the scanner.
* @return true if scanning or scan starting.
*/
bool NimBLEScan::isScanning() {
return !m_stopped;
}


/**
* @brief Start scanning.
* @param [in] duration The duration in seconds for which to scan.
Expand Down
5 changes: 3 additions & 2 deletions src/NimBLEScan.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ class NimBLEScan {
public:
bool start(uint32_t duration, void (*scanCompleteCB)(NimBLEScanResults), bool is_continue = false);
NimBLEScanResults start(uint32_t duration, bool is_continue = false);
bool isScanning();
void setAdvertisedDeviceCallbacks(NimBLEAdvertisedDeviceCallbacks* pAdvertisedDeviceCallbacks, bool wantDuplicates = false);
void setActiveScan(bool active);
void setInterval(uint16_t intervalMSecs);
void setWindow(uint16_t windowMSecs);
void setDuplicateFilter(bool active);
void setLimitedOnly(bool active);
void setDuplicateFilter(bool enabled);
void setLimitedOnly(bool enabled);
void setFilterPolicy(uint8_t filter);
bool stop();
void clearResults();
Expand Down

0 comments on commit bad29ee

Please sign in to comment.