1 /****************************************************************************** 2 * Copyright (c) 2022 Telink Semiconductor (Shanghai) Co., Ltd. ("TELINK") 3 * All rights reserved. 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 #ifndef HCI_CONST_H_ 20 #define HCI_CONST_H_ 21 22 /****HCI INFO****/ 23 #define HCI_VERSION 0x09 //Bluetooth Core Specification 5.0 24 #define HCI_REVISION 0x0002 //Revision of the Current HCI in the BR/EDR Controller 25 #define HCI_LMP_VERSION 0x09 //Version of the Current LMP or PAL in the Controller, Bluetooth Core Specification 5.0 26 #define HCI_MANUFACTURER_NAME VENDOR_ID //Manufacturer Name of the BR/EDR Controller 27 #define HCI_LMP_SUBVERSION 0x0001 //Subversion of the Current LMP or PAL in the Controller 28 29 #define LMP_FEATURES 0x0000000000000000 30 31 32 33 34 /****Events****/ 35 #define HCI_EVT_DISCONNECTION_COMPLETE 0x05 36 37 #define HCI_EVT_REMOTE_NAME_REQ_COMPLETE 0x07 38 #define HCI_EVT_ENCRYPTION_CHANGE 0x08 39 #define HCI_EVT_CHANGE_LINK_KEY_COMPLETE 0x09 40 #define HCI_EVT_READ_REMOTE_VER_INFO_COMPLETE 0x0C 41 #define HCI_EVT_CMD_COMPLETE 0x0E 42 #define HCI_EVT_CMD_STATUS 0x0F 43 #define HCI_EVT_HW_ERROR 0x10 44 #define HCI_EVT_NUM_OF_COMPLETE_PACKETS 0x13 45 #define HCI_EVT_DATA_BUF_OVERFLOW 0x1A 46 #define HCI_EVT_ENCRYPTION_KEY_REFRESH 0x30 47 #define HCI_EVT_LE_META 0x3E 48 #define HCI_EVT_HT_ERR_FLAG 0xF0 49 50 // LE Meta Event Codes 51 #define HCI_SUB_EVT_LE_CONNECTION_COMPLETE 0x01 //core_4.0 52 #define HCI_SUB_EVT_LE_ADVERTISING_REPORT 0x02 //core_4.0 53 #define HCI_SUB_EVT_LE_CONNECTION_UPDATE_COMPLETE 0x03 //core_4.0 54 #define HCI_SUB_EVT_LE_READ_REMOTE_USED_FEATURES_COMPLETE 0x04 //core_4.0 55 #define HCI_SUB_EVT_LE_LONG_TERM_KEY_REQUESTED 0x05 //core_4.0 56 #define HCI_SUB_EVT_LE_REMOTE_CONNECTION_PARAM_REQUEST 0x06 //core_4.1 57 #define HCI_SUB_EVT_LE_DATA_LENGTH_CHANGE 0x07 //core_4.2 58 #define HCI_SUB_EVT_LE_READ_LOCAL_P256_KEY_COMPLETE 0x08 //core_4.2 59 #define HCI_SUB_EVT_LE_GENERATE_DHKEY_COMPLETE 0x09 //core_4.2 60 #define HCI_SUB_EVT_LE_ENHANCED_CONNECTION_COMPLETE 0x0A //core_4.2 61 #define HCI_SUB_EVT_LE_DIRECT_ADVERTISE_REPORT 0x0B //core_4.2 62 63 #define HCI_SUB_EVT_LE_PHY_UPDATE_COMPLETE 0x0C //core_5.0 64 #define HCI_SUB_EVT_LE_EXTENDED_ADVERTISING_REPORT 0x0D //core_5.0 - LE Extended Advertising Report Event - [5] 7.7.65.13 65 #define HCI_SUB_EVT_LE_PERIODIC_ADVERTISING_SYNC_ESTABLISHED 0x0E //core_5.0 - LE Periodic Advertising Sync Established Event - [5] 7.7.65.14 66 #define HCI_SUB_EVT_LE_PERIODIC_ADVERTISING_REPORT 0x0F //core_5.0 - LE Periodic Advertising Report Event- [5] 7.7.65.15 67 #define HCI_SUB_EVT_LE_PERIODIC_ADVERTISING_SYNC_LOST 0x10 //core_5.0 - LE Periodic Advertising Sync Lost Event - [5] 7.7.65.16 68 #define HCI_SUB_EVT_LE_SCAN_TIMEOUT 0x11 //core_5.0 - LE Scan Timeout Event - [5] 7.7.65.17 69 #define HCI_SUB_EVT_LE_ADVERTISING_SET_TERMINATED 0x12 //core_5.0 - LE Advertising Set Terminated Event - [5]7.7.65.18 70 #define HCI_SUB_EVT_LE_SCAN_REQUEST_RECEIVED 0x13 //core_5.0 - LE Scan Request Received Event - [5]7.7.65.19 71 #define HCI_SUB_EVT_LE_CHANNEL_SELECTION_ALGORITHM 0x14 //core_5.0 - LE Channel Selection Algorithm Event - [5]7.7.65.20 72 73 74 #define HCI_SUB_EVT_LE_CONNECTIONLESS_IQ_REPORT 0x15 //core_5.1 7.7.65.21 LE Connectionless IQ Report event 75 #define HCI_SUB_EVT_LE_CONNECTION_IQ_REPORT 0x16 //core_5.1 7.7.65.22 LE Connection IQ Report event 76 #define HCI_SUB_EVT_LE_CTE_REQUEST_FAILED 0x17 //core_5.1 7.7.65.23 LE CTE Request Failed event 77 #define HCI_SUB_EVT_LE_PERIODIC_ADVERTISING_SYNC_TRANSFOR_RECEIVED 0x18 //core_5.1 7.7.65.24 LE Periodic Advertising Sync Transfer Received event 78 79 80 #define HCI_SUB_EVT_LE_CIS_ESTABLISHED 0x19 //core_5.2 7.7.65.25 LE CIS Established event 81 #define HCI_SUB_EVT_LE_CIS_REQUESTED 0x1A //core_5.2 7.7.65.26 LE CIS Request event 82 #define HCI_SUB_EVT_LE_CREATE_BIG_COMPLETE 0x1B //core_5.2 7.7.65.27 LE Create BIG Complete event 83 #define HCI_SUB_EVT_LE_TERMINATE_BIG_COMPLETE 0x1C //core_5.2 7.7.65.28 LE Terminate BIG Complete event 84 #define HCI_SUB_EVT_LE_BIG_SYNC_ESTABLILSHED 0x1D //core_5.2 7.7.65.29 LE BIG Sync Established event 85 #define HCI_SUB_EVT_LE_BIG_SYNC_LOST 0x1E //core_5.2 7.7.65.30 LE BIG Sync Lost event 86 #define HCI_SUB_EVT_LE_REQUEST_PEER_SCA_COMPLETE 0x1F //core_5.2 7.7.65.31 LE Request Peer SCA Complete event 87 #define HCI_SUB_EVT_LE_PATH_LOSS_THRESHOLD 0x20 //core_5.2 7.7.65.32 LE Path Loss Threshold event 88 #define HCI_SUB_EVT_LE_TRANSMIT_POWER_REPORTING 0x21 //core_5.2 7.7.65.33 LE Transmit Power Reporting event 89 #define HCI_SUB_EVT_LE_BIGINFO_ADVERTISING_REPORT 0x22 //core_5.2 7.7.65.34 LE BIGInfo Advertising Report event 90 #define HCI_SUB_EVT_MAX 0x23 91 92 93 #define HCI_SUB_EVT_LE_CONNECTION_ESTABLISH 0xFF //Telink private 94 95 96 97 98 //Event mask - last octet 99 #define HCI_EVT_MASK_NONE 0x0000000000 100 #define HCI_EVT_MASK_INQUIRY_COMPLETE 0x0000000001 101 #define HCI_EVT_MASK_INQUIRY_RESULT 0x0000000002 102 #define HCI_EVT_MASK_CONNECTION_COMPELETE 0x0000000004 103 #define HCI_EVT_MASK_CONNECTION_REQUEST 0x0000000008 104 #define HCI_EVT_MASK_DISCONNECTION_COMPLETE 0x0000000010 // 105 #define HCI_EVT_MASK_AUTHENTICATION_COMPLETE 0x0000000020 106 #define HCI_EVT_MASK_REMOTE_NAME_REQUEST_COMPLETE 0x0000000040 107 #define HCI_EVT_MASK_ENCRYPTION_CHANGE 0x0000000080 108 #define HCI_EVT_MASK_CHANGE_CONECTION_LINK_KEY_COMPLETE 0x0000000100 109 #define HCI_EVT_MASK_MASTER_LINK_KEY_COMPLETE 0x0000000200 110 #define HCI_EVT_MASK_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE 0x0000000400 111 #define HCI_EVT_MASK_READ_REMOTE_VERSION_INFORMATION_COMPLETE 0x0000000800 // 112 113 #define HCI_EVT_MASK_DEFAULT HCI_EVT_MASK_DISCONNECTION_COMPLETE 114 115 116 // LE Event mask - last octet 117 #define HCI_LE_EVT_MASK_NONE 0x00000000 118 #define HCI_LE_EVT_MASK_CONNECTION_COMPLETE 0x00000001 119 #define HCI_LE_EVT_MASK_ADVERTISING_REPORT 0x00000002 120 #define HCI_LE_EVT_MASK_CONNECTION_UPDATE_COMPLETE 0x00000004 121 #define HCI_LE_EVT_MASK_READ_REMOTE_FEATURES_COMPLETE 0x00000008 122 #define HCI_LE_EVT_MASK_LONG_TERM_KEY_REQUEST 0x00000010 123 #define HCI_LE_EVT_MASK_REMOTE_CONNECTION_PARAM_REQUEST 0x00000020 124 #define HCI_LE_EVT_MASK_DATA_LENGTH_CHANGE 0x00000040 125 #define HCI_LE_EVT_MASK_READ_LOCAL_P256_PUBLIC_KEY_COMPLETE 0x00000080 126 #define HCI_LE_EVT_MASK_GENERATE_DHKEY_COMPLETE 0x00000100 127 #define HCI_LE_EVT_MASK_ENHANCED_CONNECTION_COMPLETE 0x00000200 128 #define HCI_LE_EVT_MASK_DIRECT_ADVERTISING_REPORT 0x00000400 129 #define HCI_LE_EVT_MASK_PHY_UPDATE_COMPLETE 0x00000800 // core5.0 130 #define HCI_LE_EVT_MASK_EXTENDED_ADVERTISING_REPORT 0x00001000 // core5.0 131 #define HCI_LE_EVT_MASK_PERIODIC_ADVERTISING_SYNC_ESTABLISHED 0x00002000 // core5.0 132 #define HCI_LE_EVT_MASK_PERIODIC_ADVERTISING_REPORT 0x00004000 // core5.0 133 #define HCI_LE_EVT_MASK_PERIODIC_ADVERTISING_SYNC_LOST 0x00008000 // core5.0 134 #define HCI_LE_EVT_MASK_EXTENDED_SCAN_TIMEOUT 0x00010000 // core5.0 135 #define HCI_LE_EVT_MASK_EXTENDED_ADVERTISING_SET_TERMINATED 0x00020000 // core5.0 136 #define HCI_LE_EVT_MASK_SCAN_REQUEST_RECEIVED 0x00040000 // core5.0 137 #define HCI_LE_EVT_MASK_CHANNEL_SELECTION_ALGORITHM 0x00080000 // core5.0 - bit19 138 139 #define HCI_LE_EVT_MASK_CONNECTIONLESS_IQ_REPORT 0x00100000 // core5.1 - bit20 140 #define HCI_LE_EVT_MASK_CONNECTION_IQ_REPORTD 0x00200000 // core5.1 - bit21 141 #define HCI_LE_EVT_MASK_CTE_REQUEST_FAILED 0x00400000 // core5.1 - bit22 142 #define HCI_LE_EVT_MASK_PERIODIC_ADVERTISING_SYNC_TRANSFOR_RECEIVED 0x00800000 // core5.1 - bit23 143 144 #define HCI_LE_EVT_MASK_CIS_ESTABLISHED 0x01000000 // core5.2 - bit24 145 #define HCI_LE_EVT_MASK_CIS_REQUESTED 0x02000000 // core5.2 - bit25 146 #define HCI_LE_EVT_MASK_CREATE_BIG_COMPLETE 0x04000000 // core5.2 - bit26 147 #define HCI_LE_EVT_MASK_TERMINATE_BIG_COMPLETE 0x08000000 // core5.2 - bit27 148 #define HCI_LE_EVT_MASK_BIG_SYNC_ESTABLILSHED 0x10000000 // core5.2 - bit28 149 #define HCI_LE_EVT_MASK_BIG_SYNC_LOST 0x20000000 // core5.2 - bit29 150 #define HCI_LE_EVT_MASK_REQUEST_PEER_SCA_COMPLETE 0x40000000 // core5.2 - bit30 151 #define HCI_LE_EVT_MASK_PATH_LOSS_THRESHOLD 0x80000000 // core5.2 - bit31 152 153 #define HCI_LE_EVT_MASK_2_TRANSMIT_POWER_REPORTING 0x00000001 // core5.2 - bit32 154 #define HCI_LE_EVT_MASK_2_BIGINFO_ADVERTISING_REPORT 0x00000002 // core5.2 - bit33 155 156 157 158 #define HCI_LE_EVT_MASK_CONNECTION_ESTABLISH 0x80000000 //TODO 159 160 161 162 163 164 #define HCI_LE_EVT_MASK_DEFAULT HCI_LE_EVT_MASK_NONE 165 166 167 168 169 170 //Link Control Command 171 //-- OGF -- 172 #define HCI_CMD_LINK_CTRL_OPCODE_OGF 0x04 //0x01 <<2 = 0x04 173 //-- OCF -- 174 #define HCI_CMD_INQUIRY 0x01 175 #define HCI_CMD_DISCONNECT 0x06 176 #define HCI_CMD_READ_REMOTE_NAME_REQ 0x19 177 #define HCI_CMD_READ_REMOTE_VER_INFO 0x1D 178 179 180 181 //Controller & Baseband Commands 182 //-- OGF -- 183 #define HCI_CMD_CBC_OPCODE_OGF 0x0C //0x03 <<2, controller & baseband control 184 //-- OCF -- 185 #define HCI_CMD_SET_EVENT_MASK 0x01 186 #define HCI_CMD_RESET 0x03 187 #define HCI_CMD_SET_EVENT_FILTER 0x05 188 #define HCI_CMD_WRITE_PIN_TYPE 0x0A 189 #define HCI_CMD_CREATE_NEW_UINT_KEY 0x0B 190 #define HCI_CMD_DELETE_STORED_LINK_KEY 0x12 191 #define HCI_CMD_WRITE_LOCAL_NAME 0x13 192 #define HCI_CMD_READ_LOCAL_NAME 0x14 193 #define HCI_CMD_WRITE_CONNECTION_ACCEPT_TIMEOUT 0x16 194 #define HCI_CMD_WRITE_PAGE_TIMEOUT 0x18 195 #define HCI_CMD_WRITE_SCAN_ENABLE 0x1A 196 #define HCI_CMD_WRITE_PAGE_SCAN_ACTIVITY 0x1C 197 #define HCI_CMD_WRITE_INQUIRY_SCAN_ACTIVITY 0x1E 198 #define HCI_CMD_WRITE_AUTHENTICATION_ENABLE 0x20 199 #define HCI_CMD_WRITE_CLASS_OF_DEVICE 0x24 200 #define HCI_CMD_WRITE_VOICE_SETTING 0x26 201 #define HCI_CMD_WRITE_NUM_BROADCAST_RETRANSMISSIONS 0x2A 202 #define HCI_CMD_WRITE_HOLD_MODE_ACTIVITY 0x2C 203 #define HCI_CMD_READ_TX_POWER_LEVEL 0x2D 204 #define HCI_CMD_SYNCHRONOUS_FLOW_CONTROL_ENABLE 0x2F 205 #define HCI_CMD_SET_CONTROLLER_TO_HOST_FLOW_CTRL 0x31 206 #define HCI_CMD_HOST_BUF_SIZE 0x33 207 #define HCI_CMD_HOST_NUM_OF_COMPLETE_PACKETS 0x35 208 #define HCI_CMD_WRITE_CURRENT_IAC_LAP 0x3A 209 #define HCI_CMD_SET_AFH_HOST_CHN_CLASSIFICATION 0x3F 210 #define HCI_CMD_WRITE_INQUIRY_SCAN_TYPE 0x43 211 #define HCI_CMD_WRITE_INQUIRY_MODE 0x45 212 #define HCI_CMD_WRITE_PAGE_SCAN_TYPE 0x47 213 #define HCI_CMD_SET_EVT_MASK_PAGE_2 0x63 214 215 //Informational Parameters 216 //-- OGF -- 217 #define HCI_CMD_IP_OPCODE_OGF 0x10 //0x04 <<2, information parameter 218 //-- OCF -- 219 #define HCI_CMD_READ_LOCAL_VER_INFO 0x01 220 #define HCI_CMD_READ_LOCAL_SUPPORTED_CMDS 0x02 221 #define HCI_CMD_READ_LOCAL_SUPPORTED_FEATURES 0x03 222 #define HCI_CMD_READ_EXTENDED_LOCAL_SUPPORTED_FEATURES 0x04 223 #define HCI_CMD_READ_BUFFER_SIZE_COMMAND 0x05 224 #define HCI_CMD_READ_BD_ADDR 0x09 225 226 227 228 // Status Parameters 229 //-- OGF -- 230 #define HCI_CMD_STATUS_PARAM_OPCODE_OGF 0x14 //0x05 <<2 231 //-- OCF -- 232 #define HCI_CMD_READ_RSSI 0x05 233 234 235 236 #define HCI_EVT_CMDSTATUS(n,c,g,s) ((s) | (n<<8) | (c<<16) | (g<<24)) 237 #define HCI_EVT_CMD_COMPLETE_STATUS(n,c,g,s) ((n<<0) | (c<<8) | (g<<16) | (s<<24)) 238 239 240 241 242 // LE Controller Commands 243 //-- OGF -- 244 #define HCI_CMD_LE_OPCODE_OGF 0x20 //0x08 <<2 = 0x20 245 //-- OCF -- 246 #define HCI_CMD_LE_SET_EVENT_MASK 0x01 247 #define HCI_CMD_LE_READ_BUF_SIZE 0x02 248 #define HCI_CMD_LE_READ_LOCAL_SUPPORTED_FEATURES 0x03 249 #define HCI_CMD_LE_SET_RANDOM_ADDR 0x05 250 #define HCI_CMD_LE_SET_ADVERTISE_PARAMETERS 0x06 251 #define HCI_CMD_LE_READ_ADVERTISING_CHANNEL_TX_POWER 0x07 252 #define HCI_CMD_LE_SET_ADVERTISE_DATA 0x08 253 #define HCI_CMD_LE_SET_SCAN_RSP_DATA 0x09 254 #define HCI_CMD_LE_SET_ADVERTISE_ENABLE 0x0A 255 #define HCI_CMD_LE_SET_SCAN_PARAMETERS 0x0B 256 #define HCI_CMD_LE_SET_SCAN_ENABLE 0x0C 257 #define HCI_CMD_LE_CREATE_CONNECTION 0x0D 258 #define HCI_CMD_LE_CREATE_CONNECTION_CANCEL 0x0E 259 #define HCI_CMD_LE_READ_WHITE_LIST_SIZE 0x0F 260 #define HCI_CMD_LE_CLEAR_WHITE_LIST 0x10 261 #define HCI_CMD_LE_ADD_DEVICE_TO_WHITE_LIST 0x11 262 #define HCI_CMD_LE_REMOVE_DEVICE_FROM_WL 0x12 263 #define HCI_CMD_LE_CONNECTION_UPDATE 0x13 264 #define HCI_CMD_LE_SET_HOST_CHANNEL_CLASSIFICATION 0x14 265 #define HCI_CMD_LE_READ_CHANNEL_MAP 0x15 266 #define HCI_CMD_LE_READ_REMOTE_USED_FEATURES 0x16 267 #define HCI_CMD_LE_ENCRYPT 0x17 268 #define HCI_CMD_LE_RANDOM 0x18 269 #define HCI_CMD_LE_START_ENCRYPTION 0x19 270 #define HCI_CMD_LE_LONG_TERM_KEY_REQUESTED_REPLY 0x1A 271 #define HCI_CMD_LE_LONG_TERM_KEY_REQUESTED_NEGATIVE_REPLY 0x1B 272 #define HCI_CMD_LE_READ_SUPPORTED_STATES 0x1C 273 #define HCI_CMD_LE_RECEIVER_TEST 0x1D 274 #define HCI_CMD_LE_TRANSMITTER_TEST 0x1E 275 #define HCI_CMD_LE_TEST_END 0x1F 276 //core_4.0 end 277 //core_4.1 begin 278 #define HCI_CMD_LE_REMOTE_CONNECTION_PARAM_REQ_REPLY 0x20 279 #define HCI_CMD_LE_REMOTE_CONNECTION_PARAM_REQ_NEGATIVE_REPLY 0x21 280 //core_4.1 end 281 //core_4.2 begin 282 #define HCI_CMD_LE_SET_DATA_LENGTH 0x22 283 #define HCI_CMD_LE_READ_SUGGESTED_DEFAULT_DATA_LENGTH 0x23 284 #define HCI_CMD_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH 0x24 285 #define HCI_CMD_LE_READ_LOCAL_P256_PUBLIC_KEY 0x25 286 #define HCI_CMD_LE_GENERATE_DHKEY 0x26 287 #define HCI_CMD_LE_ADD_DEVICE_TO_RESOLVING_LIST 0x27 288 #define HCI_CMD_LE_REMOVE_DEVICE_FROM_RESOLVING_LIST 0x28 289 #define HCI_CMD_LE_CLEAR_RESOLVING_LIST 0x29 290 #define HCI_CMD_LE_READ_RESOLVING_LIST_SIZE 0x2A 291 #define HCI_CMD_LE_READ_PEER_RESOLVABLE_ADDRESS 0x2B 292 #define HCI_CMD_LE_READ_LOCAL_RESOLVABLE_ADDRESS 0x2C 293 #define HCI_CMD_LE_SET_ADDRESS_RESOLUTION_ENABLE 0x2D 294 #define HCI_CMD_LE_SET_RESOLVABLE_PRIVATE_ADDRESS_TIMEOUT 0x2E 295 #define HCI_CMD_LE_READ_MAX_DATA_LENGTH 0x2F 296 //core_4.2 end 297 //core_5.0 begin 298 #define HCI_CMD_LE_READ_PHY 0x30//LE Read PHY Command - [5] 7.8.47 299 #define HCI_CMD_LE_SET_DEFAULT_PHY 0x31//LE Set Default PHY Command - [5] 7.8.48 300 #define HCI_CMD_LE_SET_PHY 0x32//LE Set PHY Command - [5] 7.8.49 301 #define HCI_CMD_LE_ENHANCED_RECEIVER_TEST 0x33//LE Enhanced Receiver Test Command - [5] 7.8.50 302 #define HCI_CMD_LE_ENHANCED_TRANSMITTER_TEST 0x34//LE Enhanced Transmitter Test Command - [5] 7.8.51 303 #define HCI_CMD_LE_SET_ADVERTISING_SET_RANDOM_ADDRESS 0x35//LE Set Advertising Set Random Address Command - [5] 7.8.52 304 #define HCI_CMD_LE_SET_EXTENDED_ADVERTISING_PARAMETERS 0x36//LE Set Extended Advertising Parameters Command - [5] 7.8.53 305 #define HCI_CMD_LE_SET_EXTENDED_ADVERTISING_DATA 0x37//LE Set Extended Advertising Data Command - [5] 7.8.54 306 #define HCI_CMD_LE_SET_EXTENDED_SCAN_RESPONSE_DATA 0x38//LE Set Extended Scan Response Data Command - [5] 7.8.55 307 #define HCI_CMD_LE_SET_EXTENDED_ADVERTISING_ENABLE 0x39//LE Set Extended Advertising Enable Command - [5] 7.8.56 308 #define HCI_CMD_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH 0x3A//LE Read Maximum Advertising Data Length Command - [5] 7.8.57 309 #define HCI_CMD_LE_READ_NUMBER_OF_SUPPORTED_ADVERTISING_SETS 0x3B//LE Read Number of Supported Advertising Sets Command - [5] 7.8.58 310 #define HCI_CMD_LE_REMOVE_ADVERTISING_SET 0x3C//LE Remove Advertising Set Command - [5] 7.8.59 311 #define HCI_CMD_LE_CLEAR_ADVERTISING_SETS 0x3D//LE Clear Advertising Sets Command - [5] 7.8.60 312 #define HCI_CMD_LE_SET_PERIODIC_ADVERTISING_PARAMETERS 0x3E//LE Set Periodic Advertising Parameters Command - [5] 7.8.61 313 #define HCI_CMD_LE_SET_PERIODIC_ADVERTISING_DATA 0x3F//LE Set Periodic Advertising Data Command - [5] 7.8.62 314 #define HCI_CMD_LE_SET_PERIODIC_ADVERTISING_ENABLE 0x40//LE Set Periodic Advertising Enable Command - [5] 7.8.63 315 #define HCI_CMD_LE_SET_EXTENDED_SCAN_PARAMETERS 0x41//LE Set Extended Scan Parameters Command - [5] 7.8.64 316 #define HCI_CMD_LE_SET_EXTENDED_SCAN_ENABLE 0x42//LE Set Extended Scan Enable Command - [5] 7.8.65 317 #define HCI_CMD_LE_EXTENDED_CREATE_CONNECTION 0x43//LE Extended Create Connection Command - [5] 7.8.66 318 #define HCI_CMD_LE_PERIODIC_ADVERTISING_CREATE_SYNC 0x44//LE Periodic Advertising Create Sync Command- [5] 7.8.67 319 #define HCI_CMD_LE_PERIODIC_ADVERTISING_CREATE_SYNC_CANCEL 0x45//LE Periodic Advertising Create Sync Cancel Command - [5] 7.8.68 320 #define HCI_CMD_LE_PERIODIC_ADVERTISING_TERMINATE_SYNC 0x46//LE Periodic Advertising Terminate Sync Command - [5] 7.8.69 321 #define HCI_CMD_LE_ADD_DEVICE_TO_PERIODIC_ADVERTISER_LIST 0x47//LE Add Device To Periodic Advertiser List Command - [5] 7.8.70 322 #define HCI_CMD_LE_REMOVE_DEVICE_FROM_PERIODIC_ADVERTISER_LIST 0x48//LE Remove Device From Periodic Advertiser List Command - [5] 7.8.71 323 #define HCI_CMD_LE_CLEAR_PERIODIC_ADVERTISER_LIST 0x49//LE Clear Periodic Advertiser List Command - [5] 7.8.72 324 #define HCI_CMD_LE_READ_PERIODIC_ADVERTISER_LIST_SIZE 0x4A//LE Read Periodic Advertiser List Size Command - [5] 7.8.73 325 #define HCI_CMD_LE_READ_TRANSMIT_POWER 0x4B//LE Read Transmit Power Command - [5] 7.8.74 326 #define HCI_CMD_LE_READ_RF_PATH_COMPENSATION 0x4C//LE Read RF Path Compensation Command - [5] 7.8.75 327 #define HCI_CMD_LE_WRITE_RF_PATH_COMPENSATION 0x4D//LE Write RF Path Compensation Command - [5] 7.8.76 328 #define HCI_CMD_LE_SET_PRIVACY_MODE 0x4E//LE Set Privacy Mode Command - [5] 7.8.77 329 //core_5.0 end 330 331 //core_5.1 begin 332 #define HCI_CMD_LE_RECEIVER_TEST_V3 0x4F //7.8.78 LE Receiver Test command [v3] 333 #define HCI_CMD_LE_TRANSMITTER_TEST_V3 0x50 //7.8.79 LE Transmitter Test command [v3] 334 #define HCI_CMD_LE_SET_CONNECTIONLESS_CTE_TRANSMIT_PARAMETERS 0x51 //7.8.80 LE Set Connectionless CTE Transmit Parameters command 335 #define HCI_CMD_LE_SET_CONNECTIONLESS_CTE_TRANSMIT_ENABLE 0x52 //7.8.81 LE Set Connectionless CTE Transmit Enable command 336 #define HCI_CMD_LE_SET_CONNECTIONLESS_IQ_SAMPLING_ENABLE 0x53 //7.8.82 LE Set Connectionless IQ Sampling Enable command 337 #define HCI_CMD_LE_SET_CONNECTION_CTE_RECEIVE_PARAMETERS 0x54 //7.8.83 LE Set Connection CTE Receive Parameters command 338 #define HCI_CMD_LE_SET_CONNECTION_CTE_TRANSMIT_PARAMETERS 0x55 //7.8.84 LE Set Connection CTE Transmit Parameters command 339 #define HCI_CMD_LE_CONNECTION_REQUEST_ENABLE 0x56 //7.8.85 LE Connection CTE Request Enable command 340 #define HCI_CMD_LE_CONNECTION_RESPONSE_ENABLE 0x57 //7.8.86 LE Connection CTE Response Enable command 341 #define HCI_CMD_LE_READ_ANTENNA_INFORMATION 0x58 //7.8.87 LE Read Antenna Information command 342 #define HCI_CMD_LE_SET_PERIODIC_ADVERTISING_RECEIVE_ENABLE 0x59 //7.8.88 LE Set Periodic Advertising Receive Enable command 343 #define HCI_CMD_LE_PERIODIC_ADVERTISING_SYNC_TRANSFOR 0x5A //7.8.89 LE Periodic Advertising Sync Transfer command 344 #define HCI_CMD_LE_PERIODIC_ADVERTISING_SET_INFO_TRANSFOR 0x5B //7.8.90 LE Periodic Advertising Set Info Transfer command 345 #define HCI_CMD_LE_SET_PERIODIC_ADV_SYNC_TRANSFOR_PARAMETERS 0x5C //7.8.91 LE Set Periodic Advertising Sync Transfer Parameters command 346 #define HCI_CMD_LE_SET_DEFAULT_PERIODIC_ADV_SYNC_TRANSFOR_PARAMS 0x5D //7.8.92 LE Set Default Periodic Advertising Sync Transfer Parameters command 347 #define HCI_CMD_LE_GENERATE_DHKEY_V2 0x5E //7.8.93 LE Generate DHKey command [v2] 348 #define HCI_CMD_LE_MODIFY_SLEEP_CLOCK_ACCURACY 0x5F //7.8.94 LE Modify Sleep Clock Accuracy command 349 //core_5.1 end 350 351 //core_5.2 begin 352 #define HCI_CMD_LE_READ_BUFFER_SIZE_V2 0x60 //7.8.2 LE Read Buffer Size command 353 #define HCI_CMD_LE_READ_ISO_TX_SYNC 0x61 //7.8.96 LE Read ISO TX Sync command 354 #define HCI_CMD_LE_SET_CIG_PARAMETERS 0x62 //7.8.97 LE Set CIG Parameters command 355 #define HCI_CMD_LE_SET_CIG_PARAMETERS_TEST 0x63 //7.8.98 LE Set CIG Parameters Test command 356 #define HCI_CMD_LE_CREATE_CIS 0x64 //7.8.99 LE Create CIS command 357 #define HCI_CMD_LE_REMOVE_CIG 0x65 //7.8.100 LE Remove CIG command 358 #define HCI_CMD_LE_ACCEPT_CIS_REQUEST 0x66 //7.8.101 LE Accept CIS Request command 359 #define HCI_CMD_LE_REJECT_CIS_REQUEST 0x67 //7.8.102 LE Reject CIS Request command 360 #define HCI_CMD_LE_CREATE_BIG 0x68 //7.8.103 LE Create BIG command 361 #define HCI_CMD_LE_CREATE_BIG_TEST 0x69 //7.8.104 LE Create BIG Test command 362 #define HCI_CMD_LE_TERMINATE_BIG 0x6A //7.8.105 LE Terminate BIG command 363 #define HCI_CMD_LE_BIG_CREATE_SYNC 0x6B //7.8.106 LE BIG Create Sync command 364 #define HCI_CMD_LE_BIG_TERMINATE_SYNC 0x6C //7.8.107 LE BIG Terminate Sync command 365 #define HCI_CMD_LE_REQUEST_PEER_SCA 0x6D //7.8.108 LE Request Peer SCA command 366 #define HCI_CMD_LE_SETUP_ISO_DATA_PATH 0x6E //7.8.109 LE Setup ISO Data Path command 367 #define HCI_CMD_LE_REMOVE_ISO_DARA_PATH 0x6F //7.8.110 LE Remove ISO Data Path command 368 #define HCI_CMD_LE_ISO_TRTANSMIT_TEST 0x70 //7.8.111 LE ISO Transmit Test command 369 #define HCI_CMD_LE_ISO_RECEIVE_TEST 0x71 //7.8.112 LE ISO Receive Test command 370 #define HCI_CMD_LE_ISO_READ_TEST_COUNTERS 0x72 //7.8.113 LE ISO Read Test Counters command 371 #define HCI_CMD_LE_ISO_TEST_END 0x73 //7.8.114 LE ISO Test End command 372 #define HCI_CMD_LE_SET_HOST_FEATURE 0x74 //7.8.115 LE Set Host Feature Command 373 #define HCI_CMD_LE_READ_ISO_LINK_QUALITY 0x75 //7.8.116 LE Read ISO Link Quality command 374 #define HCI_CMD_LE_ENHANCED_READ_TRANSMIT_POWER_LEVEL 0x76 //7.8.117 LE Enhanced Read Transmit Power Level command 375 #define HCI_CMD_LE_READ_REMOTE_TRANSMIT_POWER_LEVEL 0x77 //7.8.118 LE Read Remote Transmit Power Level command 376 #define HCI_CMD_LE_SET_PATH_LOSS_REPORTING_PARAMETERS 0x78 //7.8.119 LE Set Path Loss Reporting Parameters command 377 #define HCI_CMD_LE_SET_PATH_LOSS_REPORTING_ENABLE 0x79 //7.8.120 LE Set Path Loss Reporting Enable command 378 #define HCI_CMD_LE_SET_TRANSMIT_POWER_REPORTING_ENABLE 0x7A //7.8.121 LE Set Transmit Power Reporting Enable command 379 //core_5.2 end 380 381 382 #define HCI_CMD_LINK_POLICY_OPCODE_OGF 0x08 //0x02<<2 = 0x08 383 #define HCI_CMD_TEST_OPCODE_OGF 0x18 //0x06<<2 = 0x18 384 385 // Vendor specific Commands 386 //-- OGF -- 387 #define HCI_CMD_VENDOR_OPCODE_OGF 0xFC //0x3f <<2 = 0xFC 388 //-- OCF -- 389 #define HCI_TELINK_READ_REG 0x01 390 #define HCI_TELINK_WRITE_REG 0x02 391 #define HCI_TELINK_SET_TX_PWR 0x03 392 #define HCI_TELINK_REBOOT_MCU 0x04 393 #define HCI_TELINK_SET_RXTX_DATA_LEN 0x40 394 #endif /* HCI_CONST_H_ */ 395