change remote device db to fs

This commit is contained in:
mila@ringwald.ch 2015-02-12 23:04:43 +00:00
parent 3e58ab5fb0
commit d647e0e6f6
2 changed files with 2 additions and 1 deletions

View File

@ -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);

View File

@ -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 <btstack/linked_list.h>