mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-08 12:50:52 +00:00
15 lines
195 B
C
15 lines
195 B
C
/*
|
|
* hci.h
|
|
*
|
|
* Created by Matthias Ringwald on 4/29/09.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "hci_transport.h"
|
|
|
|
// run the hci daemon loop
|
|
void hci_run(hci_transport_t *transport, void *config);
|
|
|