Add example which uses the in-built 'DMA sniff' capability to check a CRC32

This commit is contained in:
andygpz11
2023-02-10 17:11:00 +00:00
committed by GitHub
parent 42ffd518c9
commit 827cb43b3a
4 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
add_executable(sniff_crc
sniff_crc.c
)
target_link_libraries(sniff_crc pico_stdlib hardware_dma)
# create map/bin/hex file etc.
pico_add_extra_outputs(sniff_crc)
# add url via pico_set_program_url
example_auto_set_url(sniff_crc)