You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
383 B
26 lines
383 B
/* |
|
* Copyright (c) 2024 Celina Sophie Kalus <hello@celinakalus.de> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/ { |
|
chosen { |
|
zephyr,console = &uart8; |
|
zephyr,shell-uart = &uart8; |
|
}; |
|
|
|
mbox-consumer { |
|
compatible = "vnd,mbox-consumer"; |
|
mboxes = <&mailbox 10>, <&mailbox 11>; |
|
mbox-names = "tx", "rx"; |
|
}; |
|
}; |
|
|
|
&uart8 { |
|
status = "okay"; |
|
}; |
|
|
|
&mailbox { |
|
status = "okay"; |
|
};
|
|
|