zephyr/samples/drivers/mbox/boards/esp32s3_devkitm_procpu.overlay
Felipe Neves 4e0ff0cb61 samples: drivers: mbox: add samples for ESP32 and ESP32S3
devkitc and devktim boards for the mbox driver sample.

Signed-off-by: Felipe Neves <ryukokki.felipe@gmail.com>
2024-08-07 07:17:01 -04:00

23 lines
331 B
Text

/*
* Copyright (c) 2024 Felipe Neves.
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
zephyr,sram = &sram0;
zephyr,ipc_shm = &shm0;
zephyr,ipc = &mbox0;
};
mbox-consumer {
compatible = "vnd,mbox-consumer";
mboxes = <&mbox0 1>, <&mbox0 0>;
mbox-names = "tx", "rx";
};
};
&mbox0 {
status = "okay";
};