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.
25 lines
391 B
25 lines
391 B
/* |
|
* Copyright 2025 Basalte bv |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* Overlay to enable support for OpenThread's RCP over UART communication |
|
*/ |
|
|
|
/ { |
|
chosen { |
|
zephyr,hdlc-rcp-if = &hdlc_rcp_if; |
|
zephyr,ot-uart = &arduino_serial; |
|
}; |
|
|
|
hdlc_rcp_if: hdlc_rcp_if { |
|
compatible = "uart,hdlc-rcp-if"; |
|
}; |
|
}; |
|
|
|
&arduino_serial { |
|
status = "okay"; |
|
current-speed = <115200>; |
|
};
|
|
|