mirror of
https://github.com/vim/vim
synced 2025-05-02 22:37:47 +02:00
Problem: filetype: Zephyr overlay files not recognized Solution: detect '*.overlay' files as dts filetype, include syntax tests for DTS files (Xudong Zheng) Reference: https://docs.zephyrproject.org/latest/build/dts/howtos.html closes: #15963 Signed-off-by: Xudong Zheng <7pkvm5aw@slicealias.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
16 lines
266 B
Text
16 lines
266 B
Text
/ {
|
|
chosen {
|
|
zephyr,uart-mcumgr = &cdc_acm_uart0;
|
|
zephyr,shell-uart = &cdc_acm_uart1;
|
|
};
|
|
};
|
|
|
|
&zephyr_udc0 {
|
|
cdc_acm_uart0: cdc_acm_uart0 {
|
|
compatible = "zephyr,cdc-acm-uart";
|
|
};
|
|
|
|
cdc_acm_uart1: cdc_acm_uart1 {
|
|
compatible = "zephyr,cdc-acm-uart";
|
|
};
|
|
};
|