zephyr/samples/drivers/led_pca9633/boards/stm32373c_eval.overlay
Peter Bigot 49d6837bec samples: move board overlay files into boards directory
Application board.overlay files tend to be paired with
boards/board.conf files that extend the functionality of a board.
Move the overlay files to the same location as the config files that
they work with.

A few overlay files that are paired with a prj_board.conf file in the
application root directory are left in place.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
2019-10-01 20:38:24 -07:00

13 lines
201 B
Plaintext

/* SPDX-License-Identifier: Apache-2.0 */
&i2c1 {
status = "okay";
clock-frequency = <I2C_BITRATE_STANDARD>;
pca9633@62 {
compatible = "nxp,pca9633";
reg = <0x62>;
label = "PCA9633";
};
};