Skip to content

Commit bdb1002

Browse files
committed
samples: i2s: output: add nucleo_g431kb
Add nucleo_g431kb board in samples/drivers/i2s/output Signed-off-by: Mario Paja <mariopaja@hotmail.com>
1 parent cb0eb7a commit bdb1002

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Mario Paja <mariopaja@hotmail.com>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
i2s-tx = &sai1_a;
10+
};
11+
};
12+
13+
&pll {
14+
/* 44.1KHz (-0.03% Error) */
15+
div-q = <8>;
16+
};
17+
18+
&sai1_a {
19+
pinctrl-0 = <&sai1_sd_a_pa10 &sai1_fs_a_pa9
20+
&sai1_sck_a_pa8>;
21+
pinctrl-names = "default";
22+
status = "okay";
23+
dma-names = "tx";
24+
};
25+
26+
&dma1{
27+
status = "okay";
28+
};
29+
30+
&dmamux1{
31+
status = "okay";
32+
};

0 commit comments

Comments
 (0)