Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | /* * Copyright (c) 2020 Linaro Limited * * SPDX-License-Identifier: Apache-2.0 */ /dts-v1/; #include <st/f4/stm32f427vi.dtsi> / { model = "96Boards Gumstix AeroCore 2"; compatible = "gumstix,aerocore2", "st,stm32f427"; chosen { zephyr,console = &uart7; zephyr,shell-uart = &uart7; zephyr,sram = &sram0; zephyr,flash = &flash0; zephyr,ccm = &ccm0; }; leds { compatible = "gpio-leds"; yellow_led_1: led_1 { gpios = <&gpioe 10 GPIO_ACTIVE_HIGH>; label = "USR1 LED"; }; blue_led_2: led_2 { gpios = <&gpioe 9 GPIO_ACTIVE_HIGH>; label = "USR2 LED"; }; }; aliases { led0 = &yellow_led_1; led1 = &blue_led_2; }; }; &usart1 { current-speed = <115200>; status = "okay"; }; &usart2 { current-speed = <115200>; status = "okay"; }; &usart3 { current-speed = <115200>; status = "okay"; }; &uart7 { current-speed = <115200>; status = "okay"; }; &uart8 { current-speed = <115200>; status = "okay"; }; &spi1 { status = "okay"; }; &spi2 { status = "okay"; }; &spi3 { status = "okay"; }; &spi4 { status = "okay"; }; &i2c2 { status = "okay"; clock-frequency = <I2C_BITRATE_FAST>; }; &usbotg_fs { status = "okay"; }; &timers4 { status = "okay"; pwm4: pwm { status = "okay"; }; }; &timers5 { status = "okay"; pwm5: pwm { status = "okay"; }; }; &adc1 { status = "okay"; }; &rng { status = "okay"; }; |