BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
device.hpp
1#ifndef BLUETOE_BINDINGS_HCI_DEVICE_HPP
2#define BLUETOE_BINDINGS_HCI_DEVICE_HPP
3
4#include <bluetoe/link_layer.hpp>
5#include <bluetoe/libsub.hpp>
6
7namespace bluetoe
8{
9 template < class Server, typename ... Options >
10 using device = bluetoe::hci::link_layer< Server, hci_details::libsub_transport, Options... >;
11}
12
13#endif
14