A LoRa APRS node with KISS interface based on a Raspberry Pi Pico
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
225 B

cmake_minimum_required(VERSION 3.12)
project(elf2uf2)
set(CMAKE_CXX_STANDARD 14)
add_subdirectory(../../src/common/boot_uf2 boot_uf2_headers)
add_executable(elf2uf2 main.cpp)
target_link_libraries(elf2uf2 boot_uf2_headers)