aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
Commit message (Collapse)AuthorAgeFilesLines
* Reduce the max stack size needed.Simon Wilks2013-07-141-1/+1
|
* Remove unused code.Simon Wilks2013-07-134-44/+3
|
* Whitespace cleanupSimon Wilks2013-07-133-21/+0
|
* Merge remote-tracking branch 'upstream/master' into hott-escSimon Wilks2013-07-138-571/+550
|\
| * Merge pull request #331 from jean-m-cyr/masterLorenz Meier2013-07-111-2/+2
| |\ | | | | | | Don't leave RX in bind mode if console open fails
| | * Don't leave RX in bind mode on console open failJean Cyr2013-07-111-2/+2
| | | | | | | | | | | | | | | Don't leave RX in bind mode in the unlikely eventuality that console open fails
| * | ubx: SVINFO parsing optimized and message rate increased, CPU consumption ↵Anton Babushkin2013-07-111-23/+19
| | | | | | | | | | | | reduced in 6 times, ~0.3% now.
| * | Major ubx driver cleanup: few pages of code removed, send update only when ↵Anton Babushkin2013-07-112-510/+392
| |/ | | | | | | full navigation solution received
| * General cleanup of /dev/px4io and /dev/px4fmuJean Cyr2013-07-094-41/+10
| | | | | | | | | | | | | | - Use distinct common symbols for px4io and px4fmu device files, and use instead of hardcoded filenames - Use common symbols defining px4io bits consistently between px4fmu and px4io builds.
| * Merge remote-tracking branch 'upstream/master'unknown2013-07-091-27/+14
| |\
| | * Merged GPS info fixes from pigeonhunterLorenz Meier2013-07-091-27/+14
| | |\
| | | * Some cleanup of NAV_SVINFO message handlerDarryl Taylor2013-07-091-14/+6
| | | |
| | | * Merge branch 'master' into gps_fixDarryl Taylor2013-07-091-23/+18
| | | |\
| | | | * Ammended UBlox driver to record SV Info, satelites_visible == satelites ↵Darryl Taylor2013-07-091-23/+18
| | | | | | | | | | | | | | | | | | | | used. Info is recorded for all SVs, used or not. Might be useful for GPS debugging.
| * | | | Merge remote-tracking branch 'upstream/master'unknown2013-07-092-31/+59
| |\| | |
| | * | | Minor additions to fix, pushingLorenz Meier2013-07-091-6/+6
| | | | |
| | * | | Hotfix for GPS driverLorenz Meier2013-07-091-25/+26
| | | | |
| | * | | Hotfix for GPS: Disable unknown message classesLorenz Meier2013-07-091-1/+10
| | | | |
| | * | | Merge branch 'mpu6000_set_sample_rate' of https://github.com/fibr/Firmware ↵Lorenz Meier2013-07-091-6/+24
| | |\ \ \ | | | |/ / | | |/| | | | | | | into mpu_rate
| | | * | mpu6000 driver support for setting ratesergeil2013-05-311-6/+24
| | | | |
| * | | | Merge remote-tracking branch 'upstream/master'unknown2013-07-081-30/+95
| |\| | |
| * | | | Minor px4io optimizationJean Cyr2013-07-071-18/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since this module creates the PX4IO object and that the IOCTL function doesn't use the file descriptor parameter, there is no need to invoke IOCTL via the filesystem since we can call it directly.
| * | | | Prevent RELAY1 control via IOCTL if DSM bind feature is enabledJean Cyr2013-07-071-14/+45
| | | | |
| * | | | Merge remote-tracking branch 'upstream/master'Jean Cyr2013-07-0721-24/+33
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | Merge remote-tracking branch 'upstream/master'Jean Cyr2013-07-072-3/+4
| |\ \ \ \
| * | | | | Support binding DSM2 and DSMX satellite receiversJean Cyr2013-07-052-5/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The px4io bind command allows you to put a DSM satellite receiver into bind mode. Since this feature requires that the dsm VCC line (red wire) be cut and routed through relay one, it is not enabled by default in order not to affect those not using a DSM satellite receiver or wising to use relay one for other purposes. NOTE: Binding DSM2 satellites in 11-bit mode is not supported due to potential bug in some DSM2 receiver streams when in 11-bit mode. Furthermore the px4io software folds 11 bit data down to 10 bits so there is no resolution advantage to to 11-bit mode. To enable the feature the RC_RL1_DSM_VCC parameter must be set to a non zero value from the console, or using QGroundControl: param set RC_RL1_DSM_VCC 1 From the console you can initiate DSM bind mode with: uorb start param set RC_RL1_DSM_VCC 1 px4io start px4io bind dsm2 For binding a DSMX satellite to a DSMX transmitter you would instead use: px4io bind dsmx Your receiver module should start a rapid flash and you can follow the normal binding sequence of your transmitter. Note: The value of parameter RC_RL1_DSM_VCC defaults to 0, so none of this will have any effect on an unmodified DSM receiver connection. For this feature to work, the power wire (red) must be cut and each side connected to a terminal on relay1 of the px4io board. This has been tested using Spektrum as well as Hobby King 'Orange' DSM satellite receivers. Both px4fmu and px4io images are updated.
* | | | | | Major refactor of HoTT drivers and finished sensor read implementation.Simon Wilks2013-07-137-108/+151
| | | | | |
* | | | | | Merge remote-tracking branch 'upstream/master' into hott-escSimon Wilks2013-07-0923-57/+132
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | |
| * | | | | Merged mkblctrlLorenz Meier2013-07-081-30/+95
| |\ \ \ \ \ | | |_|_|/ / | |/| | | |
| | * | | | mkclctrl 8/11Bit support, uOrb Topic added, ESC Topic to Sdlog2 addedmarco2013-07-021-30/+95
| | |/ / /
| * | | | Merge pull request #320 from PX4/integrationLorenz Meier2013-07-0721-24/+33
| |\ \ \ \ | | |_|/ / | |/| | | NuttX integration merge
| | * | | Merge branch 'master' of github.com:PX4/Firmware into integrationLorenz Meier2013-06-172-77/+93
| | |\| |
| | * | | Turn off loggingpx4dev2013-06-161-4/+4
| | | | |
| | * | | Set the serial port speed before trying to talk to IOpx4dev2013-06-161-3/+10
| | | | |
| | * | | Use a better way of guessing whether we can use both-edges mode.px4dev2013-06-121-1/+3
| | | | |
| | * | | MergedLorenz Meier2013-06-071-2/+19
| | |\ \ \
| | * \ \ \ Merged masterLorenz Meier2013-06-065-123/+378
| | |\ \ \ \
| | * | | | | Rename our 'task_spawn' to 'task_spawn_cmd' since NuttX now has its own ↵px4dev2013-06-016-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | version of task_spawn that's different.
| | * | | | | Integration WIP with current NuttX versionLorenz Meier2013-06-0113-13/+13
| | | | | | |
| | * | | | | Cleanup, WIP, needs a NuttX checkout to Firmware/NuttX nowLorenz Meier2013-06-011-3/+3
| | | |_|_|/ | | |/| | |
| * | | | | Remove the <15kmh cuttoff and report kmh via HoTT.Simon Wilks2013-07-072-3/+4
| | |_|_|/ | |/| | |
* | | | | More cleanupsSimon Wilks2013-07-066-31/+47
| | | | |
* | | | | Add in missing files.Simon Wilks2013-07-048-0/+1306
| | | | |
* | | | | Refactoring of the hott telemetry driver and added functionality to read ↵Simon Wilks2013-07-044-881/+0
| | | | | | | | | | | | | | | | | | | | from a HoTT sensor.
* | | | | Initial non-tested code for reading from the ESC.Simon Wilks2013-06-283-17/+117
|/ / / /
* | | | Merge pull request #307 from sjwilks/ets-airspeed-fixLorenz Meier2013-06-161-77/+80
|\ \ \ \ | | | | | | | | | | Fix the usage help and lots of formatting fixes.
| * | | | And yet more formatting cleanupsSimon Wilks2013-06-161-26/+26
| | | | |
| * | | | More formatting cleanupsSimon Wilks2013-06-161-68/+71
| | | | |
| * | | | Fix usage help and cleanup formattingSimon Wilks2013-06-161-4/+4
| | |_|/ | |/| |
* / | | Report airspeed over HoTT telemetrySimon Wilks2013-06-161-0/+13
|/ / /