BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
phy_encodings.hpp
1#ifndef BLUETOE_LINK_LAYER_PHY_ENCODINGS_HPP
2#define BLUETOE_LINK_LAYER_PHY_ENCODINGS_HPP
3
4namespace bluetoe {
5namespace link_layer {
6namespace details {
7
8 namespace phy_ll_encoding {
9 enum phy_ll_encoding_t : std::uint8_t {
10 le_unchanged_coding = 0x00,
11 le_1m_phy = 0x01,
12 le_2m_phy = 0x02,
13 le_coded_phy = 0x04,
14 };
15 }
16}
17}
18}
19#endif