-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Shipman
committed
Mar 8, 2024
1 parent
e2f2923
commit d72eca4
Showing
686 changed files
with
93,086 additions
and
2,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
include(pico_sdk_import.cmake) | ||
|
||
project(test_project C CXX ASM) | ||
|
||
set(CMAKE_C_STANDARD 11) | ||
|
||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
pico_sdk_init() | ||
|
||
add_executable(log | ||
log.cpp | ||
../../../libraries/rp2040-config/MB85RS1MT.cpp | ||
../../../libraries/rp2040-config/config.cpp | ||
) | ||
|
||
pico_enable_stdio_usb(log 1) | ||
|
||
pico_add_extra_outputs(log) | ||
|
||
target_link_libraries(log pico_stdlib hardware_flash hardware_sync hardware_spi hardware_i2c pico_unique_id pico_rand hardware_irq hardware_watchdog) |
Oops, something went wrong.