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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | /* * Copyright (c) 2021 Thomas Stranger * * SPDX-License-Identifier: Apache-2.0 */ /dts-v1/; #include <seeed/lora-e5.dtsi> / { model = "Seeed Studio LoRa-E5 Dev Board"; compatible = "seeed,lora-e5-dev-board"; chosen { zephyr,console = &usart1; zephyr,shell-uart = &usart1; zephyr,sram = &sram0; zephyr,flash = &flash0; zephyr,code-partition = &flash0; }; leds { compatible = "gpio-leds"; red_led_1: led_0 { gpios = <&gpiob 5 GPIO_ACTIVE_LOW>; label = "User LED1"; /* the led can be disconnected, using J16 (D5) */ }; }; gpio_keys { compatible = "gpio-keys"; boot_button: button_0 { label = "SW1"; gpios = <&gpiob 13 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; }; user_button: button_1 { label = "SW2"; gpios = <&gpioa 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* user_button can be disconnected, using J14 (D0) */ }; }; aliases { led0 = &red_led_1; sw0 = &boot_button; sw1 = &user_button; lora0 = &lora; }; pwr_3v3: pwr-3v3-ctrl { /* * PWR rail for SPI-flash, Temp-Sensor, RS-485 Transceiver, * and for external devices(Grove, header). * Requires closed J15 (D9) */ compatible = "regulator-fixed-sync", "regulator-fixed"; label = "pwr-3v3-ctrl"; regulator-name = "pwr-3v3-ctrl"; enable-gpios = <&gpioa 9 GPIO_ACTIVE_HIGH>; regulator-boot-on; status = "okay"; }; pwr_5v: pwr-5v-ctrl { /* * Available for external devices on header J2 * Requires closed J6 (D10) */ compatible = "regulator-fixed-sync", "regulator-fixed"; label = "pwr-5v-ctrl"; regulator-name = "pwr-5v-ctrl"; enable-gpios = <&gpiob 10 GPIO_ACTIVE_HIGH>; regulator-boot-on; status = "okay"; }; }; &clk_msi { status = "okay"; msi-range = <11>; }; &pll { clocks = <&clk_msi>; div-m = <3>; mul-n = <6>; div-r = <2>; div-q = <2>; div-p = <2>; status = "okay"; }; &rcc { clocks = <&clk_msi>; clock-frequency = <DT_FREQ_M(48)>; cpu1-prescaler = <1>; ahb3-prescaler = <1>; apb1-prescaler = <1>; apb2-prescaler = <1>; }; &lpuart1 { pinctrl-0 = <&lpuart1_tx_pc1 &lpuart1_rx_pc0>; current-speed = <115200>; status = "okay"; }; &usart1 { pinctrl-0 = <&usart1_tx_pb6 &usart1_rx_pb7>; current-speed = <115200>; status = "okay"; }; &usart2 { pinctrl-0 = <&usart2_tx_pa2 &usart2_rx_pa3>; current-speed = <115200>; status = "okay"; /* PB4 can select RS-485 TX, when J17 (A4) is closed */ }; &i2c2 { pinctrl-0 = <&i2c2_scl_pb15 &i2c2_sda_pa15>; status = "okay"; clock-frequency = <I2C_BITRATE_FAST>; /* LM75ADP temperature sensor on addr 0x48 */ }; /* Attention!: the spi-sck pin is in confict with the boot_button on pb13 */ &spi2 { pinctrl-0 = <&spi2_nss_pb9 &spi2_sck_pb13 &spi2_miso_pb14 &spi2_mosi_pa10>; status = "okay"; /* unpopulated footprint for spi flash */ }; &rtc { status = "okay"; }; &iwdg { status = "okay"; }; &adc1 { pinctrl-0 = <&adc_in2_pb3>; status = "okay"; }; &aes { status = "okay"; }; /* connectors: */ grove_serial: &usart1 {}; grove_i2c: &i2c2 {}; &flash0 { partitions { compatible = "fixed-partitions"; #address-cells = <1>; #size-cells = <1>; /* 16KB (8x2kB pages) of storage at the end of the flash */ storage_partition: partition@3c000 { label = "storage"; reg = <0x0003c000 0x00004000>; }; }; }; /* * Other Pins: * Not assigned: None * Debug: PA13(swdio), PA14(swclk) */ |