Pinctrl is missing in i2c1 device description on stm32373c_eval ovderlay file, besides using I2C1 this board (as mentioned in readme) requires to remove 2 resistors on the board. Make it simple and instead use a board with arduino_i2c port available. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
13 lines
208 B
Plaintext
13 lines
208 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
&arduino_i2c {
|
|
status = "okay";
|
|
clock-frequency = <I2C_BITRATE_STANDARD>;
|
|
|
|
pca9633@62 {
|
|
compatible = "nxp,pca9633";
|
|
reg = <0x62>;
|
|
label = "PCA9633";
|
|
};
|
|
};
|