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
449 B
25 lines
449 B
/* SPDX-License-Identifier: Apache-2.0 */ |
|
|
|
&dmac { |
|
status = "okay"; |
|
}; |
|
|
|
dut: &sercom0 { |
|
/* Internally loop-back TX and RX on PAD0 */ |
|
rxpo = <0>; |
|
txpo = <0>; |
|
|
|
/* Configure DMA channels for async operation */ |
|
dmas = <&dmac 0 0x02>, <&dmac 1 0x03>; |
|
dma-names = "rx", "tx"; |
|
}; |
|
|
|
&sercom2 { |
|
status = "disabled"; |
|
}; |
|
|
|
&sercom4 { |
|
/* configure DMA channels for async operation */ |
|
dmas = <&dmac 10 0x0A>, <&dmac 11 0x0B>; |
|
dma-names = "rx", "tx"; |
|
};
|
|
|