Added spi/spi_master_slave. (#101)

Co-authored-by: Michael Stoops <spam@michaelstoops.com>
This commit is contained in:
Michael Stoops
2022-05-16 12:22:24 -07:00
committed by GitHub
parent 1a2a85ca6e
commit 2147301e11
12 changed files with 5574 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
add_executable(spi_master
spi_master.c
)
# Pull in basic dependencies
target_link_libraries(spi_master pico_stdlib hardware_spi)
# create map/bin/hex file etc.
pico_add_extra_outputs(spi_master)
# add url via pico_set_program_url
example_auto_set_url(spi_master)