BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
l2cap_channels.hpp
1#ifndef BLUETOE_L2CAP_CHANNELS_HPP
2#define BLUETOE_L2CAP_CHANNELS_HPP
3
4namespace bluetoe {
5
6 namespace l2cap_channel_ids {
10 enum l2cap_channel_ids : std::uint16_t {
11 att = 4,
12 signaling = 5,
13 sm = 6
14 };
15 }
16}
17
18#endif