File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
samples/drivers/i2s/output/boards Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ CONFIG_HEAP_MEM_POOL_SIZE=4192
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 ZAL Zentrum für Angewandte Luftfahrtforschung GmbH
3
+ * Copyright (c) 2025 Mario Paja
4
+ *
5
+ * SPDX-License-Identifier: Apache-2.0
6
+ */
7
+
8
+ / {
9
+ aliases {
10
+ i2s-tx = &sai1_a;
11
+ };
12
+ };
13
+
14
+ &pll2 {
15
+ /* 44.1KHz (-0.03% Error) */
16
+ div-m = <1>;
17
+ mul-n = <79>;
18
+ div-q = <2>;
19
+ div-r = <2>;
20
+ div-p = <7>;
21
+ clocks = <&clk_msis>;
22
+ status = "okay";
23
+ };
24
+
25
+ &sai1_a {
26
+ pinctrl-0 = <&sai1_mclk_a_pe2 &sai1_sd_a_pe6
27
+ &sai1_fs_a_pe4 &sai1_sck_a_pe5>;
28
+ pinctrl-names = "default";
29
+ status = "okay";
30
+ mclk-enable;
31
+ mclk-div-enable;
32
+ dma-names = "tx";
33
+ };
You can’t perform that action at this time.
0 commit comments