Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
Loading...
Searching...
No Matches
cs_ExactMatchFilterStructs.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: May 27, 2021
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7#pragma once
8
9#include <stddef.h>
10
11#include <cstdint>
12
13typedef const uint8_t* filter_entry_t;
14
18struct __attribute__((__packed__)) exact_match_filter_data_t {
19 uint8_t itemCount;
20 uint8_t itemSize;
21 uint8_t itemArray[];
22};
const uint8_t * filter_entry_t
Definition: cs_ExactMatchFilterStructs.h:13
Data content of the exact match filter.
Definition: cs_ExactMatchFilterStructs.h:18
uint8_t itemCount
Definition: cs_ExactMatchFilterStructs.h:19
uint8_t itemSize
Definition: cs_ExactMatchFilterStructs.h:20