NimBLE-Arduino 2.1.2
Loading...
Searching...
No Matches
ble_ll_iso.h
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20#ifndef H_BLE_LL_ISO
21#define H_BLE_LL_ISO
22
23#include <stdint.h>
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29int ble_ll_iso_read_tx_sync(const uint8_t *cmdbuf, uint8_t len);
30int ble_ll_iso_set_cig_param(const uint8_t *cmdbuf, uint8_t len, uint8_t *rspbuf, uint8_t *rsplen);
31int ble_ll_iso_set_cig_param_test(const uint8_t *cmdbuf, uint8_t len, uint8_t *rspbuf, uint8_t *rsplen);
32int ble_ll_iso_create_cis(const uint8_t *cmdbuf, uint8_t len);
33int ble_ll_iso_disconnect_cmd(const struct ble_hci_lc_disconnect_cp *cmd);
34int ble_ll_iso_remove_cig(const uint8_t *cmdbuf, uint8_t len, uint8_t *rspbuf, uint8_t *rsplen);
35int ble_ll_iso_accept_cis_req(const uint8_t *cmdbuf, uint8_t len);
36int ble_ll_iso_reject_cis_req(const uint8_t *cmdbuf, uint8_t len);
37int ble_ll_iso_create_big(const uint8_t *cmdbuf, uint8_t len);
38int ble_ll_iso_create_big_test(const uint8_t *cmdbuf, uint8_t len);
39int ble_ll_iso_terminate_big(const uint8_t *cmdbuf, uint8_t len);
40int ble_ll_iso_big_create_sync(const uint8_t *cmdbuf, uint8_t len);
41int ble_ll_iso_big_terminate_sync(const uint8_t *cmdbuf, uint8_t len);
42int ble_ll_iso_setup_iso_data_path(const uint8_t *cmdbuf, uint8_t len);
43int ble_ll_iso_remove_iso_data_path(const uint8_t *cmdbuf, uint8_t len);
44int ble_ll_iso_transmit_test(const uint8_t *cmdbuf, uint8_t len);
45int ble_ll_iso_receive_test(const uint8_t *cmdbuf, uint8_t len);
46int ble_ll_iso_read_counters_test(const uint8_t *cmdbuf, uint8_t len);
47int ble_ll_iso_end_test(const uint8_t *cmdbuf, uint8_t len);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif