mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 12:32:44 +00:00
dts pinctrl definitions were pushed in tree without the code available to deal with it. They have been kept waiting for the code, but this is taking much more time than initially thought. So in current zephyr tree, for all STM32 boards, we have pinmux.c file which is used to configure pins and these files that are basically no-op. This situation is creating a lot of confusion especially to new comers, and create useless maintenance effort. Remove these files for now. When zephyr will ready to use them, this commit could be reverted. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
66 lines
1.1 KiB
Plaintext
66 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright (c) 2017 Fenix Engineering Solutions
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/f4/stm32f411Xe.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F411E-DISCO board";
|
|
compatible = "st,stm32f411e-disco", "st,stm32f411";
|
|
|
|
chosen {
|
|
zephyr,console = &usart2;
|
|
zephyr,shell-uart = &usart2;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
orange_led_3: led_3 {
|
|
gpios = <&gpiod 13 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD3";
|
|
};
|
|
green_led_4: led_4 {
|
|
gpios = <&gpiod 12 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD4";
|
|
};
|
|
red_led_5: led_5 {
|
|
gpios = <&gpiod 14 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD5";
|
|
};
|
|
blue_led_6: led_6 {
|
|
gpios = <&gpiod 15 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD6";
|
|
};
|
|
};
|
|
|
|
gpio_keys {
|
|
compatible = "gpio-keys";
|
|
user_button: button {
|
|
label = "User";
|
|
gpios = <&gpioa 0 GPIO_INT_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
aliases {
|
|
led0 = &orange_led_3;
|
|
led1 = &green_led_4;
|
|
led2 = &red_led_5;
|
|
led3 = &blue_led_6;
|
|
sw0 = &user_button;
|
|
};
|
|
};
|
|
|
|
&usart2 {
|
|
current-speed = <115200>;
|
|
status = "okay";
|
|
};
|
|
|
|
&rtc {
|
|
status = "okay";
|
|
};
|