2018-05-24 13:03:23 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 qianfan Zhao
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
2018-09-27 21:23:03 +08:00
|
|
|
#include <st/f2/stm32f207Xg.dtsi>
|
2018-05-24 13:03:23 +08:00
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "STMicroelectronics STM32F207ZG-NUCLEO board";
|
|
|
|
compatible = "st,stm32f207zg-nucleo", "st,stm32f207";
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,console = &usart3;
|
2018-11-27 19:11:04 +08:00
|
|
|
zephyr,shell-uart = &usart3;
|
2018-05-24 13:03:23 +08:00
|
|
|
zephyr,sram = &sram0;
|
|
|
|
zephyr,flash = &flash0;
|
|
|
|
};
|
|
|
|
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
2018-09-19 01:45:43 +08:00
|
|
|
green_led_1: led_1 {
|
2018-05-24 13:03:23 +08:00
|
|
|
gpios = <&gpiob 0 GPIO_INT_ACTIVE_HIGH>;
|
|
|
|
label = "User LD1";
|
|
|
|
};
|
2018-09-19 01:45:43 +08:00
|
|
|
blue_led_1: led_2 {
|
2018-05-24 13:03:23 +08:00
|
|
|
gpios = <&gpiob 7 GPIO_INT_ACTIVE_HIGH>;
|
|
|
|
label = "User LD2";
|
|
|
|
};
|
2018-09-19 01:45:43 +08:00
|
|
|
red_led_1: led_3 {
|
2018-05-24 13:03:23 +08:00
|
|
|
gpios = <&gpiob 14 GPIO_INT_ACTIVE_HIGH>;
|
|
|
|
label = "User LD3";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
gpio_keys {
|
|
|
|
compatible = "gpio-keys";
|
2018-09-21 07:25:55 +08:00
|
|
|
user_button: button {
|
2018-05-24 13:03:23 +08:00
|
|
|
label = "User";
|
|
|
|
gpios = <&gpioc 13 GPIO_INT_ACTIVE_LOW>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
led0 = &green_led_1;
|
|
|
|
led1 = &blue_led_1;
|
|
|
|
led2 = &red_led_1;
|
|
|
|
sw0 = &user_button;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-12 15:25:54 +08:00
|
|
|
arduino_serial: &usart6 {};
|
|
|
|
|
2018-05-24 13:03:23 +08:00
|
|
|
&usart3 {
|
|
|
|
current-speed = <115200>;
|
|
|
|
pinctrl-0 = <&usart3_pins_b>;
|
|
|
|
pinctrl-names = "default";
|
2019-06-15 01:31:16 +08:00
|
|
|
status = "okay";
|
2018-05-24 13:03:23 +08:00
|
|
|
};
|
2018-08-16 01:42:26 +08:00
|
|
|
|
2018-09-12 15:25:54 +08:00
|
|
|
&usart6 {
|
|
|
|
current-speed = <115200>;
|
|
|
|
pinctrl-names = "default";
|
2019-06-15 01:31:16 +08:00
|
|
|
status = "okay";
|
2018-09-12 15:25:54 +08:00
|
|
|
};
|
|
|
|
|
2018-08-16 01:42:26 +08:00
|
|
|
&usbotg_fs {
|
2019-06-15 01:31:16 +08:00
|
|
|
status = "okay";
|
2018-08-16 01:42:26 +08:00
|
|
|
};
|
2019-02-01 23:12:50 +08:00
|
|
|
|
2019-04-04 15:46:31 +08:00
|
|
|
&iwdg {
|
2019-06-15 01:31:16 +08:00
|
|
|
status = "okay";
|
2019-02-01 23:12:50 +08:00
|
|
|
};
|
2019-05-07 16:44:58 +08:00
|
|
|
|
|
|
|
&adc1 {
|
2019-06-15 01:31:16 +08:00
|
|
|
status = "okay";
|
2019-05-07 16:44:58 +08:00
|
|
|
};
|