wifi: squash commit of wifi implementation

Squashed commit of the following:

commit 7684f6a159896d44ec7dc865aeb382ed674f5764
Author: A.M. Rowsell <amr@frzn.dev>
Date:   Wed Jun 24 02:53:46 2026 -0400

    wireless: these files also need to be present to build, oops.

commit 3b5760f4ffa6e0162fad54552a7274d3209334d8
Author: A.M. Rowsell <amr@frzn.dev>
Date:   Tue Jun 23 10:57:55 2026 -0400

    wifi: working setup with MQTT, plus averaging of readings
This commit is contained in:
A.M. Rowsell 2026-06-24 02:55:09 -04:00
commit c937638cad
8 changed files with 547 additions and 26 deletions

View file

@ -17,16 +17,20 @@ include(pico_sdk_import.cmake)
if (PICO_SDK_VERSION_STRING VERSION_LESS "1.4.0")
message(FATAL_ERROR "Raspberry Pi Pico SDK version 1.4.0 (or later) required. Your version is ${PICO_SDK_VERSION_STRING}")
endif()
project(ensaht C CXX ASM)
# Initialise the Raspberry Pi Pico SDK
pico_sdk_init()
project(ensaht C CXX ASM)
# Add executable. Default name is the project name, version 0.1
add_executable(ensaht ensaht.c )
add_executable(ensaht ensaht.c mqtt.c)
# Add the standard include files to the build
target_include_directories(ensaht PRIVATE
${CMAKE_CURRENT_LIST_DIR}
${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts or any other standard includes, if required
)
pico_set_program_name(ensaht "ensaht")
pico_set_program_version(ensaht "0.1")
pico_enable_stdio_usb(ensaht 1)
@ -37,23 +41,19 @@ target_link_libraries(ensaht
hardware_gpio
hardware_divider
pico_double
pico_cyw43_arch_lwip_threadsafe_background
pico_lwip_mqtt
pico_lwip_mbedtls
pico_mbedtls
pico_stdlib)
if (PICO_CYW43_SUPPORTED)
target_link_libraries(ensaht pico_cyw43_arch_none)
endif()
# Add the standard include files to the build
target_include_directories(ensaht PRIVATE
${CMAKE_CURRENT_LIST_DIR}
${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts or any other standard includes, if required
)
pico_add_extra_outputs(ensaht)
add_custom_target(flash
COMMAND openocd
-f interface/cmsis-dap.cfg
-f target/rp2350.cfg
-c "adapter speed 5000"
-f target/rp2040.cfg
-c "adapter speed 10000"
-c "program ${CMAKE_CURRENT_BINARY_DIR}/ensaht.elf verify reset exit"
DEPENDS ensaht
)