Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / platform / Darwin / CHIPDevicePlatformConfig.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  *          Platform-specific configuration overrides for the chip Device Layer
21  *          on Darwin platforms.
22  */
23
24 #pragma once
25
26 // ==================== Platform Adaptations ====================
27
28 #define CHIP_DEVICE_CONFIG_ENABLE_WIFI_STATION 0
29 #define CHIP_DEVICE_CONFIG_ENABLE_WIFI_AP 0
30
31 #define CHIP_DEVICE_CONFIG_ENABLE_THREAD 0
32
33 #ifndef CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
34 #define CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE 1
35 #endif
36
37 #define CHIP_DEVICE_CONFIG_ENABLE_CHIP_TIME_SERVICE_TIME_SYNC 0
38
39 #define CHIP_DEVICE_CONFIG_PERSISTED_STORAGE_CRIT_EIDC_KEY 2
40 #define CHIP_DEVICE_CONFIG_PERSISTED_STORAGE_PROD_EIDC_KEY 3
41 #define CHIP_DEVICE_CONFIG_PERSISTED_STORAGE_INFO_EIDC_KEY 4
42 #define CHIP_DEVICE_CONFIG_PERSISTED_STORAGE_DEBUG_EIDC_KEY 5
43
44 // ========== Platform-specific Configuration =========
45
46 // These are configuration options that are unique to Darwin platforms.
47 // These can be overridden by the application as needed.
48
49 /**
50  * @def CHIP_DEVICE_LAYER_BLE_OBSERVER_PRIORITY
51  *
52  * The priority of the SoftDevice observer event handler registered by the
53  * CHIP BleLayer.
54  */
55 #ifndef CHIP_DEVICE_LAYER_BLE_OBSERVER_PRIORITY
56 #define CHIP_DEVICE_LAYER_BLE_OBSERVER_PRIORITY 3
57 #endif // CHIP_DEVICE_LAYER_BLE_OBSERVER_PRIORITY
58
59 /**
60  * @def CHIP_DEVICE_LAYER_BLE_CONN_CFG_TAG
61  *
62  * The SoftDevice BLE connection configuration tag used by the CHIP
63  * BleLayer.
64  */
65 #ifndef CHIP_DEVICE_LAYER_BLE_CONN_CFG_TAG
66 #define CHIP_DEVICE_LAYER_BLE_CONN_CFG_TAG 1
67 #endif // CHIP_DEVICE_LAYER_BLE_CONN_CFG_TAG
68
69 // ========== Platform-specific Configuration Overrides =========
70
71 #ifndef CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE
72 #define CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE 8192
73 #endif // CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE
74
75 #ifndef CHIP_DEVICE_CONFIG_THREAD_TASK_STACK_SIZE
76 #define CHIP_DEVICE_CONFIG_THREAD_TASK_STACK_SIZE 8192
77 #endif // CHIP_DEVICE_CONFIG_THREAD_TASK_STACK_SIZE
78
79 #define CHIP_DEVICE_CONFIG_ENABLE_WIFI_TELEMETRY 0
80 #define CHIP_DEVICE_CONFIG_ENABLE_THREAD_TELEMETRY 0
81 #define CHIP_DEVICE_CONFIG_ENABLE_THREAD_TELEMETRY_FULL 0
82
83 // TODO: CHIP has redesigned the crypto interface, pending on the final version of CHIP HASH APIs
84 #define CHIP_DEVICE_CONFIG_LOG_PROVISIONING_HASH 0