This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
forked from PX4/PX4-Autopilot
-
Notifications
You must be signed in to change notification settings - Fork 441
PX4io_v1 fix current sensor ADC #8
Open
totaltmega
wants to merge
77
commits into
ArduPilot:master
Choose a base branch
from
totaltmega:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
…ut the bus lock time to half
this seems to avoid a problem where the mpu6000 doesn't startup correctly if other devices are transferring at the same time.
this helps tracking down a startup issue
…ws to warn users about badly formatted PPM frames
…ng in-application testing
this allows the balance between PWM channels and GPIOs to be changed after the main flight code has started, which makes it possible to change the balance with a parameter in APM
this fixes two bugs in "hmc5883 calibrate" and also makes it much faster, so it can be run on every boot. It now uses the correct 2.5Ga range when calibrating, and fixes the expected values for X/Y/Z axes The basic calibration approach is similar to the APM2 driver, waiting for 10 good samples after discarding some initial samples. That allows the calibration to run fast enough that it can be done on every boot without causing too much boot delay.
this adds a 0.1s delay after update to give px4io time to boot. It removes the need for the user to reboot after an IO update
…VSERVO voltages should be read correctly.
this reports sudden changes in D1, useful for diagnosing temperature related issues
this solves the ms5611 issue related to temperature. We now need to test if it is OK with all sensors
Define ADC_IBAT instead of ADC_IN5
This reverts commit 9833402.
ADC_IBATT had to be defined instead of ADC_IN5 for adc to work.
this allows the FMU to force the safety off on the IO board. Useful in two cases: 1) vehicles where the safety switch is impractical or not useful (eg. HAB planes or internal combustion motors) 2) doing ESC calibration on multi-copters
this allows the safety switch on px4io to be forced off
holds power supply state and 5V rail voltage on FMUv2
the slope seems to be reasonably consistent between sensors
report both a raw (signed) and non-raw (unsigned) differential pressure. The signed value needs to be used for calibration to prevent a bias at low airpeeds if the tubes are reversed
this is useful for testing for filesystem corruption on cluster boundaries
this allows a normal GPS cable to be used for the 2nd GPS, making dual-GPS setups easier
and add current output in "hmc5883 info"
rmackay9
pushed a commit
to rmackay9/PX4Firmware
that referenced
this pull request
May 25, 2015
read serial device to obtain manual control setpoint
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
--UPDATE-- Sorry about the mess, the only commit to consider is this: totaltmega@c08af34
Please read last comment on that commit.
PX4io_v1 current sensor adc was not defined …
ADC_IBATT had to be defined instead of ADC_IN5 for adc to work.
I have test flown this and it works.