Skip to content

Commit

Permalink
apps/leaudio_broadcaster: add sample application for broadcast feature
Browse files Browse the repository at this point in the history
Added application that has stored LC3 coded audio in form of sine sweep
from 100Hz to 20kHz. Application creates Broadcast announcement, builds
BIG with 1 or 2 BISes and starts to broadcast sample data.
  • Loading branch information
KKopyscinski committed Nov 15, 2023
1 parent 3f8fa15 commit 8fbbb7b
Show file tree
Hide file tree
Showing 7 changed files with 4,933 additions and 0 deletions.
38 changes: 38 additions & 0 deletions apps/leaudio_broadcaster/pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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.
#

pkg.name: apps/leaudio_broadcaster
pkg.type: app
pkg.description: LE Audio Broadcast sample application.

pkg.author: "Krzysztof Kopyściński"
pkg.email: "[email protected]"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

pkg.deps:
- nimble/host
- nimble/host/util
- nimble/host/services/gap
- nimble/host/store/config
- "@apache-mynewt-core/kernel/os"
- "@apache-mynewt-core/sys/console"
- "@apache-mynewt-core/sys/log"
- "@apache-mynewt-core/sys/stats"
- "@apache-mynewt-core/sys/sysinit"
- "@apache-mynewt-core/sys/id"
4,412 changes: 4,412 additions & 0 deletions apps/leaudio_broadcaster/src/audio_data.h

Large diffs are not rendered by default.

325 changes: 325 additions & 0 deletions apps/leaudio_broadcaster/src/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,325 @@
/*
* 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 "console/console.h"
#include "config/config.h"

#include "nimble/ble.h"
#include "host/ble_hs.h"
#include "host/util/util.h"

#include "host/ble_audio_broadcast.h"
#include "host/ble_audio_common.h"
#include "host/ble_iso.h"

#include "audio_data.h"

#define BROADCAST_ADV_INSTANCE 1
#define BROADCAST_MAX_SDU 120
#define BROADCAST_SDU_INTVL 10000
#define BROADCAST_SAMPLE_RATE BLE_AUDIO_SAMPLING_RATE_48000_HZ

static uint8_t id_addr_type;

static struct ble_audio_base broadcaster_base;
static struct ble_audio_big_subgroup big_subgroup;

static os_membuf_t bis_mem[
OS_MEMPOOL_SIZE(MYNEWT_VAL(BROADCASTER_CHAN_NUM),
sizeof(struct ble_audio_bis))
];
static struct os_mempool bis_pool;

static os_membuf_t codec_spec_mem[
OS_MEMPOOL_SIZE(MYNEWT_VAL(BLE_MAX_BIS) * 2, 19)
];
static struct os_mempool codec_spec_pool;

static uint16_t bis_handles[MYNEWT_VAL(BROADCASTER_CHAN_NUM)];
/* The timer callout */
static struct os_callout audio_broadcast_callout;

static int audio_data_offset;

static void
audio_broadcast_event_cb(struct os_event *ev)
{
assert(ev != NULL);
uint32_t ev_start_time = os_cputime_ticks_to_usecs(os_cputime_get32());

ble_iso_tx(bis_handles[0], audio_data + audio_data_offset,
BROADCAST_MAX_SDU);
#if MYNEWT_VAL(BROADCASTER_CHAN_NUM) > 1
ble_iso_tx(bis_handles[1], audio_data + audio_data_offset,
BROADCAST_MAX_SDU);
#endif
audio_data_offset += BROADCAST_MAX_SDU;

if (audio_data_offset + BROADCAST_MAX_SDU >= sizeof(audio_data)) {
audio_data_offset = 0;
}

/** Use cputime to time BROADCAST_SDU_INTVL, as these ticks are more
* accurate than os_time ones. This assures that we do not push
* LC3 data to ISO before interval, which could lead to
* controller running out of buffers. This is only needed because
* we already have coded data in an array - in real world application
* we usually wait for new audio to arrive, and lose time to code it too.
*/
while (os_cputime_ticks_to_usecs(os_cputime_get32()) - ev_start_time <
(BROADCAST_SDU_INTVL));

os_callout_reset(&audio_broadcast_callout, 0);
}
static int
broadcast_audio()
{
os_callout_reset(&audio_broadcast_callout, 0);

return 0;
}

static int
iso_event(struct ble_iso_event *event, void *arg)
{
int i;

switch (event->type) {
case BLE_ISO_EVENT_BIG_CREATE_COMPLETE:
console_printf("BIG created\n");
if (event->big_created.desc.num_bis >
MYNEWT_VAL(BROADCASTER_CHAN_NUM)) {
return BLE_HS_EINVAL;
}
for (i = 0; i < MYNEWT_VAL(BROADCASTER_CHAN_NUM); i++) {
bis_handles[i] = event->big_created.desc.conn_handle[i];
}
broadcast_audio();
return 0;
case BLE_ISO_EVENT_BIG_TERMINATE_COMPLETE:
console_printf("BIG terminated\n");
return 0;
default:
return BLE_HS_ENOTSUP;
}
}

static void
broadcaster_init()
{
int rc;

os_callout_init(&audio_broadcast_callout, os_eventq_dflt_get(),
audio_broadcast_event_cb, NULL);

assert(MYNEWT_VAL(BROADCASTER_CHAN_NUM) > 0);

rc = os_mempool_init(&bis_pool, MYNEWT_VAL(BROADCASTER_CHAN_NUM),
sizeof(struct ble_audio_bis), bis_mem,
"bis_pool");
assert(rc == 0);

rc = os_mempool_init(&codec_spec_pool,
MYNEWT_VAL(BLE_MAX_BIS) * 2, 19,
codec_spec_mem, "codec_spec_pool");
assert(rc == 0);
}

static int
base_create()
{
#if MYNEWT_VAL(BROADCASTER_CHAN_NUM) > 1
struct ble_audio_bis *bis_left;
struct ble_audio_bis *bis_right;
uint8_t codec_spec_config_left_chan[] =
BLE_AUDIO_BUILD_CODEC_CONFIG(BROADCAST_SAMPLE_RATE,
BLE_AUDIO_SELECTED_FRAME_DURATION_10_MS,
BLE_AUDIO_LOCATION_FRONT_LEFT,
BROADCAST_MAX_SDU, );
uint8_t codec_spec_config_right_chan[] =
BLE_AUDIO_BUILD_CODEC_CONFIG(BROADCAST_SAMPLE_RATE,
BLE_AUDIO_SELECTED_FRAME_DURATION_10_MS,
BLE_AUDIO_LOCATION_FRONT_RIGHT,
BROADCAST_MAX_SDU, );
#else
struct ble_audio_bis *bis;
#endif
broadcaster_base.broadcast_id = 0x42;
broadcaster_base.presentation_delay = 20000;

big_subgroup.bis_cnt = MYNEWT_VAL(BROADCASTER_CHAN_NUM);

/** LC3 */
big_subgroup.codec_id.format = 0x06;

big_subgroup.codec_spec_config_len = 0;
#if MYNEWT_VAL(BROADCASTER_CHAN_NUM) > 1
bis_left = os_memblock_get(&bis_pool);
if (!bis_left) {
return BLE_HS_ENOMEM;
}

bis_left->codec_spec_config = os_memblock_get(&codec_spec_pool);
memcpy(bis_left->codec_spec_config,
codec_spec_config_left_chan,
sizeof(codec_spec_config_left_chan));
bis_left->codec_spec_config_len = sizeof(codec_spec_config_left_chan);
bis_left->idx = 1;

bis_right = os_memblock_get(&bis_pool);
if (!bis_right) {
return BLE_HS_ENOMEM;
}

bis_right->codec_spec_config = os_memblock_get(&codec_spec_pool);
memcpy(bis_right->codec_spec_config,
codec_spec_config_right_chan,
sizeof(codec_spec_config_right_chan));
bis_right->codec_spec_config_len = sizeof(codec_spec_config_right_chan);
bis_right->idx = 2;

STAILQ_INSERT_HEAD(&big_subgroup.bises, bis_left, next);
STAILQ_INSERT_TAIL(&big_subgroup.bises, bis_right, next);
#else
bis = os_memblock_get(&bis_pool);
if (!bis) {
return BLE_HS_ENOMEM;
}

bis->codec_spec_config_len = 0;
STAILQ_INSERT_HEAD(&big_subgroup.bises, bis, next);
#endif

STAILQ_INSERT_HEAD(&broadcaster_base.subs, &big_subgroup, next);
broadcaster_base.num_subgroups++;
return 0;
}

static int
broadcast_destroy_fn(struct ble_audio_base *base, void *args)
{
return 0;
}

static int
broadcast_create()
{
struct ble_gap_periodic_adv_params periodic_params = {
.itvl_min = 30,
.itvl_max = 30,
};

struct ble_gap_ext_adv_params extended_params = {
.itvl_min = 50,
.itvl_max = 50,
.scannable = 0,
.connectable = 0,
.primary_phy = BLE_HCI_LE_PHY_1M,
.secondary_phy = BLE_HCI_LE_PHY_2M,
.own_addr_type = id_addr_type,
.sid = BROADCAST_ADV_INSTANCE,
};

static struct ble_iso_big_params big_params = {
.sdu_interval = BROADCAST_SDU_INTVL,
.max_sdu = BROADCAST_MAX_SDU,
.max_transport_latency = BROADCAST_SDU_INTVL / 1000,
.rtn = 0,
.phy = BLE_HCI_LE_PHY_2M,
.packing = 0,
.framing = 0,
.encryption = 0,
};

struct ble_broadcast_create_params create_params = {
.base = &broadcaster_base,
.extended_params = &extended_params,
.periodic_params = &periodic_params,
.name = MYNEWT_VAL(BROADCASTER_BROADCAST_NAME),
.adv_instance = BROADCAST_ADV_INSTANCE,
.big_params = &big_params,
.svc_data = NULL,
.svc_data_len = 0,
};

return ble_audio_broadcast_create(&create_params,
broadcast_destroy_fn,
NULL,
NULL);
}

static int
broadcast_start()
{
return ble_audio_broadcast_start(BROADCAST_ADV_INSTANCE, iso_event, NULL);
}

static void
on_sync(void)
{
int rc;

console_printf("Bluetooth initialized\n");

/* Make sure we have proper identity address set (public preferred) */
rc = ble_hs_util_ensure_addr(0);
assert(rc == 0);

/* configure global address */
rc = ble_hs_id_infer_auto(0, &id_addr_type);
assert(rc == 0);

broadcaster_init();

rc = base_create();
assert(rc == 0);

rc = broadcast_create();
assert(rc == 0);

rc = broadcast_start();
assert(rc == 0);
}

/*
* main
*
* The main task for the project. This function initializes the packages,
* then starts serving events from default event queue.
*
* @return int NOTE: this function should never return!
*/
int
mynewt_main(int argc, char **argv)
{
/* Initialize OS */
sysinit();

console_printf("LE Audio Broadcast sample application\n");

/* Set sync callback */
ble_hs_cfg.sync_cb = on_sync;

/* As the last thing, process events from default event queue */
while (1) {
os_eventq_run(os_eventq_dflt_get());
}

return 0;
}
Loading

0 comments on commit 8fbbb7b

Please sign in to comment.