Add msgpack wire protocol with halfsiphash checksums

This commit is contained in:
Ian Gulliver
2026-04-03 16:59:11 +09:00
parent b076cce34a
commit db6f005bef
33 changed files with 5928 additions and 3 deletions

View File

@@ -6,13 +6,18 @@ include(pico_sdk_import.cmake)
project(picomap C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 23)
pico_sdk_init()
add_executable(picomap
picomap.cpp
)
target_include_directories(picomap PRIVATE
third_party/msgpackpp
third_party/halfsiphash
)
pico_enable_stdio_usb(picomap 1)
pico_enable_stdio_uart(picomap 0)