Skip to content

Commit

Permalink
apps/auracast: Make the code compile on native target
Browse files Browse the repository at this point in the history
This fixes auracast native build by disabling GPIO button functionality.
  • Loading branch information
MariuszSkamra authored and sjanc committed Sep 2, 2024
1 parent d007e11 commit 05cef9b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
15 changes: 9 additions & 6 deletions apps/auracast/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ static uint16_t bis_handles[MYNEWT_VAL(BROADCASTER_CHAN_NUM)];
static struct os_callout audio_broadcast_callout;

static int audio_data_offset;
static uint8_t auracast_adv_instance;

#if MYNEWT_VAL(BROADCASTER_STOP_BUTTON) >= 0
static struct os_task auracast_interrupt_task_str;
static struct os_eventq auracast_interrupt_eventq;
static os_stack_t auracast_interrupt_task_stack[BROADCASTER_INTERRUPT_TASK_STACK_SZ];

static uint8_t auracast_adv_instance;

static void
auracast_interrupt_task(void *arg)
{
Expand All @@ -90,6 +90,7 @@ auracast_gpio_irq(void *arg)
{
os_eventq_put(&auracast_interrupt_eventq, &broadcast_stop_ev);
}
#endif /* MYNEWT_VAL(BROADCASTER_STOP_BUTTON) >= 0 */

static void
audio_broadcast_event_cb(struct os_event *ev)
Expand Down Expand Up @@ -373,16 +374,18 @@ mynewt_main(int argc, char **argv)
/* Set sync callback */
ble_hs_cfg.sync_cb = on_sync;

#if MYNEWT_VAL(BROADCASTER_STOP_BUTTON) >= 0
os_eventq_init(&auracast_interrupt_eventq);
os_task_init(&auracast_interrupt_task_str, "auracast_interrupt_task",
auracast_interrupt_task, NULL,
BROADCASTER_INTERRUPT_TASK_PRIO, OS_WAIT_FOREVER,
auracast_interrupt_task_stack,
BROADCASTER_INTERRUPT_TASK_STACK_SZ);

hal_gpio_irq_init(BUTTON_3, auracast_gpio_irq, NULL,
HAL_GPIO_TRIG_RISING, HAL_GPIO_PULL_UP);
hal_gpio_irq_enable(BUTTON_3);
hal_gpio_irq_init(MYNEWT_VAL(BROADCASTER_STOP_BUTTON), auracast_gpio_irq,
NULL, HAL_GPIO_TRIG_RISING, HAL_GPIO_PULL_UP);
hal_gpio_irq_enable(MYNEWT_VAL(BROADCASTER_STOP_BUTTON));
#endif /* MYNEWT_VAL(BROADCASTER_STOP_BUTTON) >= 0 */

/* As the last thing, process events from default event queue */
while (1) {
Expand Down
5 changes: 5 additions & 0 deletions apps/auracast/syscfg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
syscfg.defs:
BROADCASTER_CHAN_NUM: 2
BROADCASTER_BROADCAST_NAME: '"NimBLE Auracast"'
BROADCASTER_STOP_BUTTON:
description: >
Button number for Broadcast Stop action.
Negative value if disabled.
value: BUTTON_3

syscfg.vals:
CONSOLE_IMPLEMENTATION: full
Expand Down

0 comments on commit 05cef9b

Please sign in to comment.