| /* |
| * Copyright (c) 2018 Aurelien Jarno |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| /dts-v1/; |
| #include <st/stm32f723.dtsi> |
| |
| / { |
| model = "STMicroelectronics STM32F723E DISCOVERY board"; |
| compatible = "st,stm32f723e-disco", "st,stm32f723"; |
| |
| chosen { |
| zephyr,console = &usart6; |
| zephyr,sram = &sram0; |
| zephyr,flash = &flash0; |
| }; |
| |
| leds { |
| compatible = "gpio-leds"; |
| blue_led: led@0 { |
| gpios = <&gpioa 5 GPIO_INT_ACTIVE_HIGH>; |
| label = "User LD1"; |
| }; |
| red_led: led@1 { |
| gpios = <&gpioa 7 GPIO_INT_ACTIVE_HIGH>; |
| label = "User LD5"; |
| }; |
| green_led: led@2 { |
| gpios = <&gpiob 1 GPIO_INT_ACTIVE_HIGH>; |
| label = "User LD6"; |
| }; |
| }; |
| |
| gpio_keys { |
| compatible = "gpio-keys"; |
| user_button: button@0 { |
| label = "User"; |
| gpios = <&gpioa 0 GPIO_INT_ACTIVE_HIGH>; |
| }; |
| }; |
| |
| aliases { |
| led0 = &blue_led; |
| led1 = &red_led; |
| led2 = &green_led; |
| sw0 = &user_button; |
| }; |
| }; |
| |
| &usart2 { |
| current-speed = <115200>; |
| pinctrl-names = "default"; |
| status = "ok"; |
| }; |
| |
| &usart6 { |
| current-speed = <115200>; |
| pinctrl-names = "default"; |
| status = "ok"; |
| }; |
| |
| &usbotg_fs { |
| status = "ok"; |
| }; |