BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
device.hpp
1#ifndef BLUETOE_DEVICE_HPP
2#define BLUETOE_DEVICE_HPP
3
4#include <bluetoe/nrf52.hpp>
5
6namespace bluetoe
7{
13 template < class Server, typename ... Options >
14 using device = typename nrf52_details::link_layer_factory<
15 Server,
16 details::requires_encryption_support_t< Server >::value,
17 typename nrf52_details::radio_options< Options... >::result,
18 typename nrf52_details::link_layer_options< Options... >::result
19 >::link_layer;
20}
21
22#endif //BLUETOE_DEVICE_HPP