2023-01-29 23:08:04 -05:00
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
2022-05-20 05:50:08 -04:00
2019-12-25 04:32:12 -05:00
## SPI master half duplex EEPROM example
This code demonstrates how to use the SPI master half duplex mode to read/write a AT93C46D
EEPROM (8-bit mode). There is also an Kconfig option `EXAMPLE_USE_SPI1_PINS` allowing use the
SPI1 (bus with code Flash connected on official modules).
### Connections
2023-02-13 02:44:12 -05:00
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 defined in start of `main/spi_eeprom_main.c` and change the hardware relatively.
2019-12-25 04:32:12 -05:00
2023-02-13 02:44:12 -05:00
| | ESP32 |
| ---- | ----- |
| Host | SPI1 |
| VCC | 3.3V |
| GND | GND |
| DO | 7 |
| DI | 8 |
| SK | 6 |
| CS | 13 |
| ORG | GND |
2019-12-25 04:32:12 -05:00
### Notes
If you meet timeout issues, please check your connections.