BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
descriptor.hpp
1#ifndef BLUETOE_DESCRIPTOR_HPP
2#define BLUETOE_DESCRIPTOR_HPP
3
4#include <bluetoe/meta_types.hpp>
5#include <cstdint>
6#include <cstddef>
7
8namespace bluetoe {
9
10 namespace details {
11 struct descriptor_parameter {};
12 }
13
20 template < std::uint16_t UUID, const std::uint8_t* const Value, std::size_t Size >
22 {
24 struct meta_type : details::descriptor_parameter, details::valid_characteristic_option_meta_type {};
26 };
27}
28
29#endif
User defined descriptor.
Definition: descriptor.hpp:22