Initial commit

This commit is contained in:
2024-02-25 14:40:20 +00:00
commit f4b64619ce
5 changed files with 78 additions and 0 deletions

20
CMakeLists.txt Normal file
View File

@@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.13)
# initialize the SDK based on PICO_SDK_PATH
# note: this must happen before project()
include(libs/pico-sdk/pico_sdk_init.cmake)
project(my_project)
# initialize the Raspberry Pi Pico SDK
pico_sdk_init()
add_executable(my_project
src/main.c
)
# Add pico_stdlib library which aggregates commonly used features
target_link_libraries(my_project pico_stdlib)
# create map/bin/hex/uf2 file in addition to ELF.
pico_add_extra_outputs(my_project)