This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

nRF Connect SDK v1.8.0: bt_scan_filter_status not defined

Hello everyone,

In the scan.h file of the scan module there is the following function declaration:

/**@brief Function for getting filter status.
 *
 * @details This function returns the filter setting and whether
 *          it is enabled or disabled.

 * @param[out] status Pointer to Filter Status structure.
 *
 * @return 0 If the operation was successful. Otherwise, a (negative) error
 *	     code is returned.
 */
int bt_scan_filter_status(struct bt_filter_status *status);

I wanted to use this function but during compilation I got the error "undefined reference to `bt_scan_filter_status". So I searched the whole SDK for the definition of this function but I couldn't find it.

Is the bt_scan_filter_status function just fake and not implemented yet or am I missing something?

Thanks in advance!

Related