blob: 24b70ce5d627158e66de969138dafc53b751fd67 [file] [log] [blame]
/*
* Copyright (c) 2019, NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
aliases{
led0 = &red_led;
led1 = &green_led;
led2 = &blue_led;
spi-8 = &hs_lspi;
usart-0 = &flexcomm0;
};
leds {
compatible = "gpio-leds";
green_led: led_1 {
gpios = <&gpio1 7 0>;
label = "User LD2";
status = "disabled";
};
blue_led: led_2 {
gpios = <&gpio1 4 0>;
label = "User LD3";
status = "disabled";
};
red_led: led_3 {
gpios = <&gpio1 6 0>;
label = "User LD4";
status = "disabled";
};
};
};
&flexcomm0 {
compatible = "nxp,lpc-usart";
current-speed = <115200>;
};
arduino_i2c: &flexcomm4 {
compatible = "nxp,lpc-i2c";
clock-frequency = <I2C_BITRATE_STANDARD>;
#address-cells = <1>;
#size-cells = <0>;
mma8652fc@1d {
compatible = "nxp,fxos8700","nxp,mma8652fc";
reg = <0x1d>;
label = "MMA8652FC";
int1-gpios = <&gpio1 19 GPIO_ACTIVE_LOW>;
};
};
arduino_spi: &hs_lspi {
};