]> granicus.if.org Git - esp-idf/commit
SPI: Split common SPI stuff out of master driver; add slave driver; add workaround...
authorJeroen Domburg <jeroen@espressif.com>
Fri, 31 Mar 2017 07:05:25 +0000 (15:05 +0800)
committerJeroen Domburg <jeroen@espressif.com>
Thu, 27 Apr 2017 03:49:04 +0000 (11:49 +0800)
commite9c372bc2dfec648fd3d06a5f96502b77d07bd58
treef173f3ba9cd989556500f4aa9a9d1980b817746b
parent8131c778608b8d4721fdcc7c3d27f43fa5b69243
SPI: Split common SPI stuff out of master driver; add slave driver; add workaround for DMA issue.
19 files changed:
components/driver/include/driver/spi_common.h [new file with mode: 0644]
components/driver/include/driver/spi_master.h
components/driver/include/driver/spi_slave.h [new file with mode: 0644]
components/driver/spi_common.c [new file with mode: 0644]
components/driver/spi_master.c
components/driver/spi_slave.c [new file with mode: 0644]
components/driver/test/test_spi_master.c
components/soc/esp32/include/soc/io_mux_reg.h
docs/api/peripherals/index.rst
docs/api/peripherals/spi_master.rst
docs/api/peripherals/spi_slave.rst [new file with mode: 0644]
examples/peripherals/spi_slave/README.md [new file with mode: 0644]
examples/peripherals/spi_slave/receiver/Makefile [new file with mode: 0644]
examples/peripherals/spi_slave/receiver/main/app_main.c [new file with mode: 0644]
examples/peripherals/spi_slave/receiver/main/component.mk [new file with mode: 0644]
examples/peripherals/spi_slave/sender/Makefile [new file with mode: 0644]
examples/peripherals/spi_slave/sender/main/app_main.c [new file with mode: 0644]
examples/peripherals/spi_slave/sender/main/component.mk [new file with mode: 0644]
tools/unit-test-app/sdkconfig