zephyr/samples/bluetooth/direction_finding_connectionless_tx/boards/nrf5340dk_nrf5340_cpuapp.overlay
Piotr Pryga 21a64561a5 samples: Bluetooth: df: fix wrong GPIO assignment for ant switching
There were wrong GPIOs assigned for antenna switches.
Used pins were assigned to other peripehrals so that
there were no outpus printed.

The samples should use GPIOs that are not assigned to any
peripheral.

Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no>
2022-03-18 10:21:19 +01:00

21 lines
467 B
Plaintext

/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/* Enable pin forwarding to network core. The selected pins will be used by
* Radio Direction Finding Extension for antenna switching purposes.
*
* Note: Pay attention to assign the same GPIO pins as those provided in
* network core DTS overlay.
*/
&gpio_fwd {
dfe-gpio-if {
gpios = <&gpio0 4 0>,
<&gpio0 5 0>,
<&gpio0 6 0>,
<&gpio0 7 0>;
};
};