6cbe9a0c16
Add initial support for the nPM1100 EK. The EK is expected to be connected to Arduino header pins (D2/3/4/5). Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
17 lines
335 B
Plaintext
17 lines
335 B
Plaintext
/*
|
|
* Copyright (C) 2023 Nordic Semiconductor ASA
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
npm1100_ek_pmic: pmic {
|
|
compatible = "nordic,npm1100";
|
|
|
|
nordic,iset-gpios = <&arduino_header 8 GPIO_ACTIVE_HIGH>; /* D2 */
|
|
|
|
npm1100_ek_buck: BUCK {
|
|
nordic,mode-gpios = <&arduino_header 9 GPIO_ACTIVE_HIGH>; /* D3 */
|
|
};
|
|
};
|
|
};
|