Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / platform / Zephyr / CHIPDevicePlatformEvent.h
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *
5  *    Licensed under the Apache License, Version 2.0 (the "License");
6  *    you may not use this file except in compliance with the License.
7  *    You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *    Unless required by applicable law or agreed to in writing, software
12  *    distributed under the License is distributed on an "AS IS" BASIS,
13  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *    See the License for the specific language governing permissions and
15  *    limitations under the License.
16  */
17
18 /**
19  *    @file
20  *          Defines platform-specific event types and data for the chip
21  *          Device Layer on Zephyr platforms.
22  */
23
24 #pragma once
25
26 #include <platform/CHIPDeviceEvent.h>
27
28 #include <bluetooth/bluetooth.h>
29
30 namespace chip {
31 namespace DeviceLayer {
32
33 namespace DeviceEventType {
34
35 /**
36  * Enumerates Zephyr platform-specific event types that are visible to the application.
37  */
38 enum PublicPlatformSpecificEventTypes
39 {
40     /* None currently defined */
41 };
42
43 /**
44  * Enumerates Zephyr platform-specific event types that are internal to the chip Device Layer.
45  */
46 enum InternalPlatformSpecificEventTypes
47 {
48     kPlatformZephyrEvent = kRange_InternalPlatformSpecific,
49     kPlatformZephyrBleConnected,
50     kPlatformZephyrBleDisconnected,
51     kPlatformZephyrBleCCCWrite,
52     kPlatformZephyrBleC1WriteEvent,
53     kPlatformZephyrBleC2IndDoneEvent,
54     kPlatformZephyrBleOutOfBuffersEvent,
55 };
56
57 } // namespace DeviceEventType
58
59 struct BleConnEventType
60 {
61     bt_conn * BtConn;
62     uint8_t HciResult;
63 };
64
65 struct BleCCCWriteEventType
66 {
67     bt_conn * BtConn;
68     uint16_t Value;
69 };
70
71 struct BleC1WriteEventType
72 {
73     bt_conn * BtConn;
74     ::chip::System::PacketBuffer * Data;
75 };
76
77 struct BleC2IndDoneEventType
78 {
79     bt_conn * BtConn;
80     uint8_t Result;
81 };
82
83 /**
84  * Represents platform-specific event information for Zephyr platforms.
85  */
86 struct ChipDevicePlatformEvent final
87 {
88     union
89     {
90         BleConnEventType BleConnEvent;
91         BleCCCWriteEventType BleCCCWriteEvent;
92         BleC1WriteEventType BleC1WriteEvent;
93         BleC2IndDoneEventType BleC2IndDoneEvent;
94     };
95 };
96
97 } // namespace DeviceLayer
98 } // namespace chip