19 lines
365 B
Plaintext
19 lines
365 B
Plaintext
/*
|
|
* Copyright (c) 2023 Alvaro Garcia Gomez <maxpowel@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&i2c0 {
|
|
status = "okay";
|
|
compatible = "nordic,nrf-twim";
|
|
pinctrl-0 = <&i2c0_default>;
|
|
pinctrl-1 = <&i2c0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
max17048:max17048@36 {
|
|
compatible = "maxim,max17048";
|
|
status = "ok";
|
|
reg = <0x36 >;
|
|
};
|
|
};
|