zephyr/samples/drivers/led_pca9633/app.overlay
Erwan Gouriou dd0b133a62 samples/drivers: led_pca9633: Replace target stm32373c_eval
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>
2021-11-26 11:36:42 +01:00

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";
};
};