| /* |
| * Copyright (c) 2017 Linaro Limited |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| /dts-v1/; |
| #include <st/stm32f429.dtsi> |
| |
| / { |
| model = "STMicroelectronics STM32F429I_DISC1 board"; |
| compatible = "st,stm32f4discovery", "st,stm32f429"; |
| |
| chosen { |
| zephyr,console = &usart1; |
| zephyr,sram = &sram0; |
| zephyr,flash = &flash0; |
| }; |
| |
| leds { |
| compatible = "gpio-leds"; |
| orange_led_3: led@0 { |
| gpios = <&gpiog 13 GPIO_INT_ACTIVE_HIGH>; |
| label = "User LD3"; |
| }; |
| green_led_4: led@1 { |
| gpios = <&gpiog 14 GPIO_INT_ACTIVE_HIGH>; |
| label = "User LD4"; |
| }; |
| }; |
| |
| gpio_keys { |
| compatible = "gpio-keys"; |
| #address-cells = <1>; |
| #size-cells = <0>; |
| user_button: button@0 { |
| label = "User"; |
| gpios = <&gpioa 0 GPIO_INT_ACTIVE_LOW>; |
| }; |
| }; |
| |
| aliases { |
| led0 = &green_led_4; |
| sw0 = &user_button; |
| }; |
| }; |
| |
| &usart1 { |
| current-speed = <115200>; |
| pinctrl-0 = <&usart1_pins_a>; |
| pinctrl-names = "default"; |
| status = "ok"; |
| }; |
| |
| &usart2 { |
| current-speed = <115200>; |
| pinctrl-0 = <&usart2_pins_a>; |
| pinctrl-names = "default"; |
| status = "ok"; |
| }; |