drivers/nble: Add stub for bt_gatt_attr_next()

Change-Id: I0a568c62a15100b12df187fb6b0205dfbae7cc0b
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2016-01-18 11:14:48 +02:00 committed by Anas Nashif
commit 4668ba761a

View file

@ -28,6 +28,11 @@ void bt_gatt_foreach_attr(uint16_t start_handle, uint16_t end_handle,
{
}
struct bt_gatt_attr *bt_gatt_attr_next(const struct bt_gatt_attr *attr)
{
return NULL;
}
int bt_gatt_attr_read(struct bt_conn *conn, const struct bt_gatt_attr *attr,
void *buf, uint16_t buf_len, uint16_t offset,
const void *value, uint16_t value_len)