esp-idf/examples/peripherals/spi_slave
wanlei 7cd75c1075 feat(spi_slave): add p4 hp spi slave driver support 2023-10-30 12:51:56 +08:00
..
receiver feat(spi_slave): add p4 hp spi slave driver support 2023-10-30 12:51:56 +08:00
sender feat(spi_slave): add p4 hp spi slave driver support 2023-10-30 12:51:56 +08:00
README.md feat(spi_slave): add p4 hp spi slave driver support 2023-10-30 12:51:56 +08:00

README.md

Supported Targets ESP32 ESP32-C2 ESP32-C3 ESP32-C6 ESP32-H2 ESP32-P4 ESP32-S2 ESP32-S3

SPI slave example

These two projects illustrate the SPI Slave driver. They're supposed to be flashed into two separate Espressif chips connected to eachother using the SPI pins defined in app_main.c. Once connected and flashed, they will use the spi master and spi slave driver to communicate with eachother. The example also includes a handshaking line to allow the master to only poll the slave when it is actually ready to parse a transaction.

Connection

For different chip and host used, the connections may be different. Here show a example diagram of hardware connection, you can freely change the GPIO settings by editing defines in the top of main/app_main.c in the master/slave source code. and change the hardware relatively.

The default GPIOs used in the example are the following:

Signal Handshake MOSI MISO SCLK CS
Pin GPIO2 GPIO12 GPIO13 GPIO15 GPIO14

Please run wires between the following GPIOs between the slave and master to make the example function:

Slave Master
Handshake Handshake
MOSI MOSI
MISO MISO
SCLK SCLK
CS CS

Be aware that the example by default uses lines normally reserved for JTAG on ESP32. If this is an issue, either because of hardwired JTAG hardware or because of the need to do JTAG debugging, feel free to change the GPIO settings.