zephyr/boards/arm/nucleo_l432kc/nucleo_l432kc.dts

64 lines
920 B
Plaintext

/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <st/stm32l432.dtsi>
/ {
model = "STMicroelectronics STM32L432KC-NUCLEO board";
compatible = "st,stm32l432kc-nucleo", "st,stm32l432";
chosen {
zephyr,console = &usart2;
zephyr,sram = &sram0;
zephyr,flash = &flash0;
};
leds {
compatible = "gpio-leds";
green_led: led@0 {
gpios = <&gpiob 3 GPIO_INT_ACTIVE_HIGH>;
label = "User LD3";
};
};
aliases {
led0 = &green_led;
};
};
&usart1 {
current-speed = <115200>;
pinctrl-0 = <&usart1_pins_b>;
pinctrl-names = "default";
};
&usart2 {
current-speed = <115200>;
pinctrl-0 = <&usart2_pins_b>;
pinctrl-names = "default";
status = "ok";
};
&spi1 {
status = "ok";
};
&timers2 {
status = "ok";
pwm {
status = "ok";
};
};
&can1 {
pinctrl-0 = <&can_pins_a>;
pinctrl-names = "default";
bus-speed = <250000>;
status = "ok";
};