Skip to content

Commit b15818b

Browse files
committed
boards/nxp: mcxn: Enable LPUART pin internal pullup resistor
This commit enables MCXN236, MCXN947 LPUART pin internal pullup resistor. For MCXN947 and MCXN236, during LPUAR initialization, the RX pin is pulled down internally and STAT [RAF] is set to one. In this state, attempting to enter low power mode will trigger LPACK reset and therefore cannot truly enter low power mode. The correct setting should be to enable LPUART pin internal pullup resistor. Signed-off-by: Zhaoxiang Jin <Zhaoxiang.Jin_1@nxp.com>
1 parent 8da8ad3 commit b15818b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

boards/nxp/frdm_mcxn236/frdm_mcxn236-pinctrl.dtsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 NXP
2+
* Copyright 2024-2025 NXP
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

@@ -14,6 +14,7 @@
1414
slew-rate = "fast";
1515
drive-strength = "low";
1616
input-enable;
17+
bias-pull-up;
1718
};
1819
};
1920

@@ -48,6 +49,7 @@
4849
slew-rate = "fast";
4950
drive-strength = "low";
5051
input-enable;
52+
bias-pull-up;
5153
};
5254
};
5355

boards/nxp/frdm_mcxn947/frdm_mcxn947-pinctrl.dtsi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 NXP
2+
* Copyright 2024-2025 NXP
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

@@ -62,6 +62,7 @@
6262
slew-rate = "fast";
6363
drive-strength = "low";
6464
input-enable;
65+
bias-pull-up;
6566
};
6667
};
6768

@@ -72,6 +73,7 @@
7273
slew-rate = "fast";
7374
drive-strength = "low";
7475
input-enable;
76+
bias-pull-up;
7577
};
7678
};
7779

0 commit comments

Comments
 (0)