Make use of the new MBOX APIs to create a ping-pong sample application. This sample is using the NRFX IPC peripheral to send and receive signals on different channels Signed-off-by: Carlo Caione <ccaione@baylibre.com>
18 lines
339 B
Text
18 lines
339 B
Text
/*
|
|
* Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
soc {
|
|
mbox: mbox@2a000 {
|
|
compatible = "nordic,mbox-nrf-ipc";
|
|
reg = <0x2a000 0x1000>;
|
|
tx-mask = <0x0000ffff>;
|
|
rx-mask = <0x0000ffff>;
|
|
interrupts = <42 NRF_DEFAULT_IRQ_PRIORITY>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|