diff --git a/platforms/libusb/main.c b/platforms/libusb/main.c index ae6df5fb7..986156953 100644 --- a/platforms/libusb/main.c +++ b/platforms/libusb/main.c @@ -70,7 +70,7 @@ int main(int argc, const char * argv[]){ hci_transport_t * transport = hci_transport_usb_instance(); hci_uart_config_t * config = NULL; bt_control_t * control = NULL; - remote_device_db_t * remote_db = (remote_device_db_t *) &remote_device_db_memory; + remote_device_db_t * remote_db = (remote_device_db_t *) &remote_device_db_fs; hci_init(transport, config, control, remote_db); diff --git a/src/remote_device_db.h b/src/remote_device_db.h index 1cc309c55..290de886d 100644 --- a/src/remote_device_db.h +++ b/src/remote_device_db.h @@ -72,6 +72,7 @@ typedef struct { extern remote_device_db_t remote_device_db_iphone; extern const remote_device_db_t remote_device_db_memory; +extern const remote_device_db_t remote_device_db_fs; // MARK: non-persisten implementation #include