This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Does nrf9160 can set 2 couples I2c to external or more

in nrf9160dk_nrf9160ns.overlay file

&i2c0 {
                status = "okay";
                label = "I2C_0";
                compatible = "nordic,nrf-twim";
                sda-gpios = < &gpio0 0x01 0x0 >;
                scl-gpios = < &gpio0 0x00 0x0 >;
            };

&i2c1 {
                status = "okay";
                label = "I2C_1";
                compatible = "nordic,nrf-twim";
                sda-gpios = < &gpio0 0x1e 0x0 >;
                scl-gpios = < &gpio0 0x1f 0x0 >;
            };

can i use  2 couples I2c or only 1 couple i2c. if could, how to do and setting?

Related