File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
samples/drivers/i2s/output/boards Expand file tree Collapse file tree 2 files changed +40
-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 Mario Paja <
[email protected] >
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ / {
8
+ aliases {
9
+ i2s-tx = &sai1_a;
10
+ };
11
+ };
12
+
13
+ /* PLL3 for clocking SAI1 peripheral */
14
+ &pll3 {
15
+ /* 44.1KHz (-0.1% Error) */
16
+ div-m = <12>;
17
+ mul-n = <203>;
18
+ div-p = <2>;
19
+ div-q = <2>;
20
+ div-r = <2>;
21
+ div-s = <2>;
22
+ div-t = <2>;
23
+ clocks = <&clk_hse>;
24
+ status = "okay";
25
+ };
26
+
27
+ &sai1_a {
28
+ pinctrl-0 = <&sai1_mclk_a_pg7 &sai1_sd_a_pc1
29
+ &sai1_fs_a_pe4 &sai1_sck_a_pe5>;
30
+ pinctrl-names = "default";
31
+ status = "okay";
32
+ mclk-enable;
33
+ mclk-divider = "div-256";
34
+ dma-names = "tx";
35
+ };
36
+
37
+ &gpdma1 {
38
+ status = "okay";
39
+ };
You can’t perform that action at this time.
0 commit comments