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.
 
 
 
 
 
 

39 lines
941 B

cmake_minimum_required(VERSION 3.12)
# Pull in SDK (must be before project)
include(pico_sdk_import.cmake)
project(LoRa-RP2040 C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
set(PICO_LORA_PATH ${PROJECT_SOURCE_DIR})
# Initialize the SDK
set(PICO_CXX_ENABLE_EXCEPTIONS 1)
pico_sdk_init()
#include(example_auto_set_url.cmake)
add_subdirectory(src)
# Hardware-specific examples in subdirectories:
#add_subdirectory(examples)
add_compile_options(-Wall
-Wno-format # int != int32_t as far as the compiler is concerned because gcc has int32_t as long int
-Wno-unused-function # we have some for the docs that aren't called
-Wno-maybe-uninitialized
)
#add_executable(main
# src/main.c
#)
# Add pico_stdlib library which aggregates commonly used features
#target_link_libraries(main pico_stdlib)
# create map/bin/hex/uf2 file in addition to ELF.
#pico_add_extra_outputs(main)