-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ROMFS split rc.board into defaults, sensors, and extras
- Loading branch information
Showing
38 changed files
with
459 additions
and
533 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 |
---|---|---|
|
@@ -70,8 +70,6 @@ then | |
|
||
param set SENS_FLOW_MINRNG 0.05 | ||
|
||
param set SYS_FMU_TASK 1 | ||
|
||
fi | ||
|
||
set PWM_DISARMED none | ||
|
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 was deleted.
Oops, something went wrong.
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,14 @@ | ||
#!/bin/sh | ||
# | ||
# Airmind Mindpx-v2 specific board defaults | ||
#------------------------------------------------------------------------------ | ||
|
||
|
||
if [ $AUTOCNF = yes ] | ||
then | ||
# Disable safety switch by default | ||
param set CBRK_IO_SAFETY 22027 | ||
|
||
fi | ||
|
||
set MIXER_AUX none |
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,15 @@ | ||
#!/bin/sh | ||
# | ||
# Airmind Mindpx-v2 specific board sensors init | ||
#------------------------------------------------------------------------------ | ||
|
||
# External I2C bus | ||
hmc5883 -C -T -X start | ||
|
||
# Internal I2C bus | ||
hmc5883 -C -T -I -R 12 start | ||
|
||
mpu6000 -s -R 8 start | ||
mpu9250 -s -R 8 start | ||
lsm303d -R 10 start | ||
l3gd20 -R 14 start |
Oops, something went wrong.