-
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
Feb 25, 2024
1 parent
1433ca0
commit ff57157
Showing
723 changed files
with
196,412 additions
and
94,707 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"git.ignoreLimitWarning": true, | ||
"cmake.configureOnOpen": true | ||
} |
Binary file not shown.
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,22 @@ | ||
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(flight | ||
flight.cpp | ||
../../../libraries/rp2040-drf1262-lib/SX1262.cpp | ||
) | ||
|
||
pico_enable_stdio_usb(flight 1) | ||
|
||
pico_add_extra_outputs(flight) | ||
|
||
target_link_libraries(flight pico_stdlib hardware_flash hardware_sync hardware_spi hardware_i2c pico_unique_id pico_rand pico_util pico_rand) |
Oops, something went wrong.