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:
Harry Jiang 2020-07-31 16:53:21 +08:00 committed by Carles Cufí
parent de729882a0
commit c37a0897f6
4 changed files with 10 additions and 0 deletions

View file

@ -37,3 +37,4 @@
};
arduino_i2c: &i2c1 {};
arduino_spi: &spi1 {};

View file

@ -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
------------

View file

@ -111,3 +111,8 @@
&eth_txd0_pg13
&eth_txd1_pb13>;
};
&spi1 {
status = "okay";
pinctrl-0 = <&spi1_sck_pa5 &spi1_miso_pa6 &spi1_mosi_pb5>;
};

View file

@ -18,3 +18,4 @@ supported:
- pwm
- adc
- netif:eth
- spi