Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/

&uart20 {

Check warning on line 7 in samples/bluetooth/hci_uart_async/boards/nrf54l15pdk_nrf54l15_cpuapp.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

samples/bluetooth/hci_uart_async/boards/nrf54l15pdk_nrf54l15_cpuapp.overlay:7 please, no spaces at the start of a line

Check warning on line 7 in samples/bluetooth/hci_uart_async/boards/nrf54l15pdk_nrf54l15_cpuapp.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

samples/bluetooth/hci_uart_async/boards/nrf54l15pdk_nrf54l15_cpuapp.overlay:7 please, no spaces at the start of a line
compatible = "nordic,nrf-uarte";
current-speed = <1000000>;
status = "okay";
hw-flow-control;
};
8 changes: 8 additions & 0 deletions samples/bluetooth/hci_uart_async/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,11 @@ tests:
tags:
- uart
- bluetooth
sample.bluetooth.hci_uart.nrf54l15.all:
harness: bluetooth
platform_allow: nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf54l15pdk/nrf54l15/cpuapp
tags:
- uart
- bluetooth
2 changes: 1 addition & 1 deletion samples/bluetooth/hci_uart_async/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

extern int hci_uart_main(void);
extern void hci_uart_main(void);

int main(void)
{
Expand Down
Loading