85 lines
1.2 KiB
Plaintext
85 lines
1.2 KiB
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/l4/stm32l432Xc.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32L432KC-NUCLEO board";
|
|
compatible = "st,stm32l432kc-nucleo", "st,stm32l432";
|
|
|
|
chosen {
|
|
zephyr,console = &usart2;
|
|
zephyr,shell-uart = &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 = "okay";
|
|
};
|
|
|
|
&spi1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&timers2 {
|
|
status = "okay";
|
|
|
|
pwm {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&can1 {
|
|
pinctrl-0 = <&can_pins_a>;
|
|
pinctrl-names = "default";
|
|
bus-speed = <125000>;
|
|
status = "okay";
|
|
};
|
|
|
|
&rtc {
|
|
status = "okay";
|
|
};
|
|
|
|
&flash0 {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
/*
|
|
* Reserve the final 16 KiB for file system partition
|
|
*/
|
|
storage_partition: partition@3c000 {
|
|
label = "storage";
|
|
reg = <0x0003c000 0x00004000>;
|
|
};
|
|
};
|
|
};
|