Skip to content

Commit 900fbe6

Browse files
committed
samples: i2s: output: add nucleo_f429zi
Add nucleo_f429zi board in samples/drivers/i2s/output Signed-off-by: Mario Paja <[email protected]>
1 parent 1c6dad2 commit 900fbe6

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_HEAP_MEM_POOL_SIZE=4192
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*
2+
* Copyright (c) 2025 Mario Paja
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
i2s-tx = &sai1_b;
10+
};
11+
};
12+
13+
/* 43.836KHz (-0.37% Error) */
14+
&pllsai{
15+
div-m = <8>;
16+
mul-n = <101>;
17+
div-q = <9>;
18+
div-divq = <1>;
19+
clocks = <&clk_hse>;
20+
status = "okay";
21+
};
22+
23+
&sai1_b {
24+
pinctrl-0 = <&sai1_mclk_b_pf7 &sai1_sd_b_pe3 &sai1_fs_b_pf9 &sai1_sck_b_pf8>;
25+
pinctrl-names = "default";
26+
status = "okay";
27+
mclk-enable;
28+
mclk-divider = "div-256";
29+
dma-names = "tx";
30+
};
31+
32+
&dma2 {
33+
status = "okay";
34+
};

0 commit comments

Comments
 (0)