-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP][DNM] Initial commit adding BASS in bttester
Adding BASS support in bttester
- Loading branch information
1 parent
175029c
commit 98f3b39
Showing
5 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
#ifndef H_BTP_BASS_ | ||
#define H_BTP_BASS_ | ||
|
||
#include "nimble/ble.h" | ||
#include <stdint.h> | ||
|
||
#ifndef __packed | ||
#define __packed __attribute__((__packed__)) | ||
#endif | ||
|
||
/* BAS Service */ | ||
/* commands */ | ||
#define BTP_BASS_READ_SUPPORTED_COMMANDS 0x01 | ||
struct btp_bass_read_supported_commands_rp { | ||
uint8_t data[0]; | ||
} __packed; | ||
|
||
#endif /* H_BTP_BASS_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/* btp_bass.c - Bluetooth Broadcast Audio Stream Service Tester */ | ||
|
||
#include "syscfg/syscfg.h" | ||
#include <stdint.h> | ||
|
||
#if MYNEWT_VAL(BLE_AUDIO) | ||
|
||
#include "btp/btp_bass.h" | ||
|
||
|
||
#include "btp/btp.h" | ||
#include "console/console.h" | ||
|
||
#include "nimble/ble.h" | ||
#include "host/ble_hs.h" | ||
#include "host/util/util.h" | ||
#include "math.h" | ||
|
||
#include "audio/ble_audio_broadcast_source.h" | ||
#include "audio/ble_audio.h" | ||
#include "host/ble_iso.h" | ||
|
||
#include "bsp/bsp.h" | ||
|
||
static uint8_t | ||
supported_commands(const void *cmd, uint16_t cmd_len, | ||
void *rsp, uint16_t *rsp_len) | ||
{ | ||
return BTP_STATUS_SUCCESS; | ||
} | ||
|
||
static const struct btp_nahdler handlers[] = { | ||
{ | ||
.opcode = BTP_BASS_READ_SUPPORTED_COMMANDS, | ||
.index = BTP_INDEX_NONE, | ||
.expect_len = 0, | ||
.func = supported_commands, | ||
}, | ||
}; | ||
|
||
uint8_t | ||
tester_init_bass(void) | ||
{ | ||
return BTP_STATUS_SUCCESS; | ||
} | ||
|
||
uint8_t | ||
tester_unregister_bass(void) | ||
{ | ||
return BTP_STATUS_SUCCESS; | ||
} | ||
|
||
#endif /* MYNEWT_VAL(BLE_AUDIO) */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters