diff --git a/emulator/btdev.c b/emulator/btdev.c
index 6ff3b92..cdf3e5d 100644
--- a/emulator/btdev.c
+++ b/emulator/btdev.c
return btdev->bdaddr;
}
+uint8_t *btdev_get_features(struct btdev *btdev)
+{
+ return btdev->features;
+}
+
void btdev_set_command_handler(struct btdev *btdev, btdev_command_func handler,
void *user_data)
{
diff --git a/emulator/btdev.h b/emulator/btdev.h
index 5118a4a..1e623f4 100644
--- a/emulator/btdev.h
+++ b/emulator/btdev.h
void btdev_destroy(struct btdev *btdev);
const uint8_t *btdev_get_bdaddr(struct btdev *btdev);
+uint8_t *btdev_get_features(struct btdev *btdev);
void btdev_set_command_handler(struct btdev *btdev, btdev_command_func handler,
void *user_data);