InfiniTime.git

ref: f34aede897428ccc3dabdd0eecbd947ee3479c6b

src/libs/mynewt-nimble/nimble/controller/src/ble_ll_iso.c


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

#include <stdint.h>
#include "syscfg/syscfg.h"
#include "nimble/ble.h"
#include "nimble/hci_common.h"
#include "controller/ble_ll_iso.h"

#if MYNEWT_VAL(BLE_LL_CFG_FEAT_LL_ISO)

int
ble_ll_iso_read_tx_sync(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_set_cig_param(const uint8_t *cmdbuf, uint8_t len,
                         uint8_t *rspbuf, uint8_t *rsplen)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_create_cis(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_disconnect_cmd(const struct ble_hci_lc_disconnect_cp *cmd)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_remove_cig(const uint8_t *cmdbuf, uint8_t len,
                      uint8_t *rspbuf, uint8_t *rsplen)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_accept_cis_req(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_reject_cis_req(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_setup_iso_data_path(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_remove_iso_data_path(const uint8_t *cmdbuf, uint8_t len)
{
    /* Nothing to do here for now when HCI is supported */
    return 0;
}
int
ble_ll_iso_create_big(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_terminate_big(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_big_create_sync(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_big_terminate_sync(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

#if MYNEWT_VAL(BLE_LL_CFG_FEAT_LL_ISO_TEST)
int
ble_ll_iso_set_cig_param_test(const uint8_t *cmdbuf, uint8_t len,
                              uint8_t *rspbuf, uint8_t *rsplen)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_create_big_test(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_transmit_test(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_receive_test(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_read_counters_test(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}

int
ble_ll_iso_end_test(const uint8_t *cmdbuf, uint8_t len)
{
    return BLE_ERR_UNSUPPORTED;
}
#endif
#endif