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/nrf51.hpp>
5
6namespace bluetoe
7{
8 template < class Server, typename ... Options >
9 using device = link_layer::link_layer<
10 Server,
11 nrf51_details::template scheduled_radio_factory<
12 nrf51_details::scheduled_radio_base_with_encryption< Options... >
13 >::template scheduled_radio,
14 Options...
15 >;
16}
17
18#endif //BLUETOE_DEVICE_HPP