zephyr/samples/drivers/mbox/remote/boards/esp32_devkitc_appcpu.overlay
Marek Matej 780bafab6a tests, samples: update esp32_devkitc board records
Update the tests using the esp32_devkitc_xxx entries.

Signed-off-by: Marek Matej <marek.matej@espressif.com>
2025-04-29 16:48:55 +02:00

24 lines
331 B
Plaintext

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