Skip to content

Commit

Permalink
changes for ns-124
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Shipman committed Feb 25, 2024
1 parent 1433ca0 commit ff57157
Show file tree
Hide file tree
Showing 723 changed files with 196,412 additions and 94,707 deletions.
4 changes: 4 additions & 0 deletions Code/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"git.ignoreLimitWarning": true,
"cmake.configureOnOpen": true
}
Binary file modified Code/BITS/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions Code/BITS/BITSv5/BITSv5.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
#define SDA_PIN 20
#define SCL_PIN 21
#define GPS_ADDR 0x42
#define EXTINT_PIN 17
#define TIMEPULSE_PIN 18
#define LED_PIN 0

#define INCLUDE_DEBUG \
1 // controls if debug conditionals are included at compile time
Expand Down
22 changes: 22 additions & 0 deletions Code/BITS/BITSv5/flight/CMakeLists.txt
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)
Loading

0 comments on commit ff57157

Please sign in to comment.