forked from iNavFlight/inav
-
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.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
274 changed files
with
5,395 additions
and
2,362 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,66 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"${workspaceRoot}/src/main/**", | ||
"${workspaceRoot}/lib/main/**", | ||
"/usr/include/**" | ||
], | ||
"browse": { | ||
"limitSymbolsToIncludedHeaders": false, | ||
"path": [ | ||
"${workspaceRoot}/src/main/**", | ||
"${workspaceRoot}/lib/main/**" | ||
] | ||
}, | ||
"intelliSenseMode": "linux-gcc-arm", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"defines": [ | ||
"MCU_FLASH_SIZE 512", | ||
"USE_NAV", | ||
"NAV_FIXED_WING_LANDING", | ||
"USE_OSD", | ||
"USE_GYRO_NOTCH_1", | ||
"USE_GYRO_NOTCH_2", | ||
"USE_DTERM_NOTCH", | ||
"USE_ACC_NOTCH", | ||
"USE_GYRO_BIQUAD_RC_FIR2", | ||
"USE_D_BOOST", | ||
"USE_SERIALSHOT", | ||
"USE_ANTIGRAVITY", | ||
"USE_ASYNC_GYRO_PROCESSING", | ||
"USE_RPM_FILTER", | ||
"USE_GLOBAL_FUNCTIONS", | ||
"USE_DYNAMIC_FILTERS", | ||
"USE_IMU_BNO055", | ||
"USE_SECONDARY_IMU", | ||
"USE_DSHOT", | ||
"FLASH_SIZE 480", | ||
"USE_I2C_IO_EXPANDER", | ||
"USE_PCF8574", | ||
"USE_ESC_SENSOR", | ||
"USE_PROGRAMMING_FRAMEWORK", | ||
"USE_SERIALRX_GHST", | ||
"USE_TELEMETRY_GHST", | ||
"USE_CMS", | ||
"USE_DJI_HD_OSD", | ||
"USE_GYRO_KALMAN", | ||
"USE_RANGEFINDER", | ||
"USE_RATE_DYNAMICS", | ||
"USE_SMITH_PREDICTOR", | ||
"USE_ALPHA_BETA_GAMMA_FILTER", | ||
"USE_MAG_VCM5883", | ||
"USE_TELEMETRY_JETIEXBUS", | ||
"USE_NAV", | ||
"USE_SDCARD_SDIO", | ||
"USE_SDCARD", | ||
"USE_Q_TUNE", | ||
"USE_GYRO_FFT_FILTER" | ||
], | ||
"configurationProvider": "ms-vscode.cmake-tools" | ||
} | ||
], | ||
"version": 4 | ||
} |
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,41 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build Matek F722-SE", | ||
"type": "shell", | ||
"command": "make MATEKF722SE", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"options": { | ||
"cwd": "${workspaceFolder}/build" | ||
} | ||
}, | ||
{ | ||
"label": "Build Matek F722", | ||
"type": "shell", | ||
"command": "make MATEKF722", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"problemMatcher": [], | ||
"options": { | ||
"cwd": "${workspaceFolder}/build" | ||
} | ||
} | ||
, | ||
{ | ||
"label": "CMAKE Update", | ||
"type": "shell", | ||
"command": "cmake ..", | ||
"group": "build", | ||
"problemMatcher": [], | ||
"options": { | ||
"cwd": "${workspaceFolder}/build" | ||
} | ||
} | ||
] | ||
} |
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
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,7 @@ | ||
#!/bin/bash | ||
rm -r build_SITL | ||
mkdir -p build_SITL | ||
#cmake -DSITL=ON -DWARNINGS_AS_ERRORS=ON -GNinja -B build_SITL .. | ||
cmake -DSITL=ON -DDEBUG=ON -DWARNINGS_AS_ERRORS=ON -GNinja -B build_SITL .. | ||
cd build_SITL | ||
ninja |
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,8 @@ | ||
#!/bin/bash | ||
cd build_SITL | ||
|
||
#Lauch SITL - configurator only mode | ||
./inav_7.0.0_SITL | ||
|
||
#Launch SITL - connect to X-Plane. IP address should be host IP address, not 127.0.0.1. Can be found in X-Plane "Network" tab. | ||
#./inav_7.0.0_SITL --sim=xp --simip=192.168.2.105 --simport=49000 |
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
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
Oops, something went wrong.