wifi scan
This commit is contained in:
parent
25caea841b
commit
4b09a8611b
4 changed files with 174 additions and 0 deletions
|
|
@ -28,3 +28,16 @@ target_link_libraries( node1 pico_stdlib hardware_i2c)
|
|||
|
||||
# create map/bin/hex file etc.
|
||||
pico_add_extra_outputs( node1 )
|
||||
|
||||
add_executable(wifi_scan wifi_scan.c)
|
||||
target_include_directories(wifi_scan PRIVATE
|
||||
${CMAKE_CURRENT_LIST_DIR}
|
||||
${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts
|
||||
)
|
||||
|
||||
target_link_libraries(wifi_scan
|
||||
pico_cyw43_arch_lwip_threadsafe_background
|
||||
pico_stdlib
|
||||
)
|
||||
|
||||
pico_add_extra_outputs(wifi_scan)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue