boards: nucleo_h743zi: Add SPI support
Add SPI1 support on the Arduino R3 connector Signed-off-by: Harry Jiang <explora26@gmail.com>
This commit is contained in:
parent
de729882a0
commit
c37a0897f6
|
@ -37,3 +37,4 @@
|
|||
};
|
||||
|
||||
arduino_i2c: &i2c1 {};
|
||||
arduino_spi: &spi1 {};
|
||||
|
|
|
@ -117,6 +117,8 @@ features:
|
|||
+-----------+------------+-------------------------------------+
|
||||
| ETHERNET | on-chip | ethernet |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| SPI | on-chip | spi |
|
||||
+-----------+------------+-------------------------------------+
|
||||
|
||||
Other hardware features are not yet supported on this Zephyr port.
|
||||
|
||||
|
@ -139,6 +141,7 @@ and a ST morpho connector. Board is configured as follows:
|
|||
- I2C : PB8, PB9
|
||||
- ADC1_INP15 : PA3
|
||||
- ETH : PA1, PA2, PA7, PB13, PC1, PC4, PC5, PG11, PG13
|
||||
- SPI1 SCK/MISO/MOSI : PA5/PA6/PB5 (Arduino SPI)
|
||||
|
||||
System Clock
|
||||
------------
|
||||
|
|
|
@ -111,3 +111,8 @@
|
|||
ð_txd0_pg13
|
||||
ð_txd1_pb13>;
|
||||
};
|
||||
|
||||
&spi1 {
|
||||
status = "okay";
|
||||
pinctrl-0 = <&spi1_sck_pa5 &spi1_miso_pa6 &spi1_mosi_pb5>;
|
||||
};
|
||||
|
|
|
@ -18,3 +18,4 @@ supported:
|
|||
- pwm
|
||||
- adc
|
||||
- netif:eth
|
||||
- spi
|
||||
|
|
Loading…
Reference in a new issue