-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
6685570
commit eeec525
Showing
17 changed files
with
121 additions
and
81 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
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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
menuconfig MODULES_GYRO_FFT | ||
menuconfig INS_USING_GYRO_FFT | ||
bool "gyro_fft" | ||
default n | ||
---help--- | ||
Enable support for gyro_fft | ||
|
||
menuconfig USER_GYRO_FFT | ||
bool "gyro_fft running as userspace module" | ||
default n | ||
depends on BOARD_PROTECTED && MODULES_GYRO_FFT | ||
---help--- | ||
Put gyro_fft in userspace memory | ||
# menuconfig USER_GYRO_FFT | ||
# bool "gyro_fft running as userspace module" | ||
# default n | ||
# depends on BOARD_PROTECTED && INS_USING_GYRO_FFT | ||
# ---help--- | ||
# Put gyro_fft in userspace memory |
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,12 @@ | ||
import os | ||
import sys | ||
from building import * | ||
|
||
cwd = GetCurrentDir() | ||
|
||
inc = [] | ||
src = Glob("*.cpp", exclude="*_test.cpp") | ||
|
||
objs = DefineGroup("ins/gyro_fft", src, depend=["INS_USING_GYRO_FFT"]) | ||
|
||
Return("objs") |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
menuconfig MODULES_LOCAL_POSITION_ESTIMATOR | ||
menuconfig INS_USING_LOCAL_POSITION_ESTIMATOR | ||
bool "local_position_estimator" | ||
default n | ||
---help--- | ||
Enable support for local_position_estimator | ||
|
||
menuconfig USER_LOCAL_POSITION_ESTIMATOR | ||
bool "local_position_estimator running as userspace module" | ||
default y | ||
depends on BOARD_PROTECTED && MODULES_LOCAL_POSITION_ESTIMATOR | ||
---help--- | ||
Put local_position_estimator in userspace memory | ||
# menuconfig USER_LOCAL_POSITION_ESTIMATOR | ||
# bool "local_position_estimator running as userspace module" | ||
# default y | ||
# depends on BOARD_PROTECTED && INS_USING_LOCAL_POSITION_ESTIMATOR | ||
# ---help--- | ||
# Put local_position_estimator in userspace memory |
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,12 @@ | ||
import os | ||
import sys | ||
from building import * | ||
|
||
cwd = GetCurrentDir() | ||
|
||
inc = [] | ||
src = Glob("*.cpp", exclude="*_test.cpp") | ||
|
||
objs = DefineGroup("ins/local_position_estimator", src, depend=["INS_USING_LOCAL_POSITION_ESTIMATOR"]) | ||
|
||
Return("objs") |
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
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.