mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-18 14:42:33 +00:00
change remote device db to fs
This commit is contained in:
parent
3e58ab5fb0
commit
d647e0e6f6
@ -70,7 +70,7 @@ int main(int argc, const char * argv[]){
|
|||||||
hci_transport_t * transport = hci_transport_usb_instance();
|
hci_transport_t * transport = hci_transport_usb_instance();
|
||||||
hci_uart_config_t * config = NULL;
|
hci_uart_config_t * config = NULL;
|
||||||
bt_control_t * control = 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);
|
hci_init(transport, config, control, remote_db);
|
||||||
|
|
||||||
|
@ -72,6 +72,7 @@ typedef struct {
|
|||||||
|
|
||||||
extern remote_device_db_t remote_device_db_iphone;
|
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_memory;
|
||||||
|
extern const remote_device_db_t remote_device_db_fs;
|
||||||
|
|
||||||
// MARK: non-persisten implementation
|
// MARK: non-persisten implementation
|
||||||
#include <btstack/linked_list.h>
|
#include <btstack/linked_list.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user