/* * Copyright (c) 2017 Linaro Limited * * SPDX-License-Identifier: Apache-2.0 */ /dts-v1/; #include / { model = "STMicroelectronics STM32F469I-DISCO board"; compatible = "st,stm32f469i-disco", "st,stm32f469"; chosen { zephyr,console = &usart3; zephyr,sram = &sram0; zephyr,flash = &flash0; }; leds { compatible = "gpio-leds"; green_led_1: led@0 { gpios = <&gpiog 6 GPIO_INT_ACTIVE_HIGH>; label = "User LD1"; }; orange_led_2: led@1 { gpios = <&gpiod 4 GPIO_INT_ACTIVE_HIGH>; label = "User LD2"; }; red_led_3: led@2 { gpios = <&gpiod 5 GPIO_INT_ACTIVE_HIGH>; label = "User LD3"; }; blue_led_4: led@3 { gpios = <&gpiok 3 GPIO_INT_ACTIVE_HIGH>; label = "User LD4"; }; }; gpio_keys { compatible = "gpio-keys"; user_button: button@0 { label = "User"; gpios = <&gpioa 0 GPIO_INT_ACTIVE_LOW>; }; }; aliases { led0 = &green_led_1; sw0 = &user_button; }; }; &usart3 { current-speed = <115200>; pinctrl-0 = <&usart3_pins_a>; pinctrl-names = "default"; status = "ok"; }; &usart6 { current-speed = <115200>; pinctrl-0 = <&usart6_pins_a>; pinctrl-names = "default"; status = "ok"; };