1 /* 2 * hci.h 3 * 4 * Created by Matthias Ringwald on 4/29/09. 5 * 6 */ 7 8 #pragma once 9 10 #include "hci_transport.h" 11 12 // run the hci daemon loop 13 void hci_run(hci_transport_t *transport, void *config); 14 15