- May 22, 2019
-
-
TSC21 authored
-
- May 09, 2019
-
-
Julian Oes authored
We forgot to add the option -s for jmavsim_run.sh which starts jMAVSim with the UDP port connecting to the SDK (port 14540).
-
Julian Oes authored
This fixes cross-talk between the QGC and SDK UDP ports for HITL.
-
Julian Oes authored
-
Julian Oes authored
This brings support for UDP port 14550 and 14540 for HITL simulation.
-
- May 08, 2019
-
-
Roman Bapst authored
* VTOL trans: changed that now in transition for both MC and FW the corresponding (correct) attitude controller is running * attitude setpoint for stabilized mode is generated by tailsitter.cpp * reset yaw setpoint during transition to avoid big yaw errors after transition back to hover * VT_TYPE parameter: added "reboot required" metadata
-
- May 06, 2019
-
-
Daniel Agar authored
- jMAVSim in PX4/Firmware (7ec6f0dc): https://github.com/PX4/jMAVSim/commit/79586deda5176c37de7804904f2553c8547edc4a - jMAVSim current upstream: https://github.com/PX4/jMAVSim/commit/ae1593d0c8d6f3860081dff04ada1cacda4c8087 - Changes: https://github.com/PX4/jMAVSim/compare/79586deda5176c37de7804904f2553c8547edc4a...ae1593d0c8d6f3860081dff04ada1cacda4c8087 ae1593d 2019-04-30 Julian Oes - Merge pull request #100 from PX4/fix-port-default 9de8f86 2019-04-29 Julian Oes - Simulator: fix default for QGC and SDK link d42efaf 2019-04-29 Julian Oes - Merge pull request #99 from PX4/pr-add-sdk-port 7d0bebb 2019-04-26 Julian Oes - Simulator: fix copy paste mistake a94816e 2019-04-26 Julian Oes - Simulator: add MAVLink UDP port for SDK 6a9634b 2019-04-26 Julian Oes - Visualizer3D: ran fix_style.sh
-
- May 01, 2019
-
-
Julian Oes authored
This should fix the regression where the mag values were not properly initialized and caused EKF2 to stop in CI.
-
- Apr 29, 2019
-
-
Daniel Agar authored
This reverts commit 585b9d8c.
-
Julian Oes authored
Includes: - Fix for vibration on ground for standard_vtol. - Noise for diff pressure / airspeed on Gazebo side. - Fix for macOS magnetometer plugin linking error.
-
- Apr 24, 2019
-
-
Julian Oes authored
Presumably older versions of pyserial do not implement __version__ but only VERSION, so we need to check for that as well.
-
- Apr 12, 2019
-
-
Daniel Agar authored
- Ubuntu install NuttX toolchain, gazebo, and switch to python3 - OSX switch to python3
-
Beat Küng authored
-
- Apr 07, 2019
-
-
Matthias Grob authored
-
- Apr 05, 2019
-
-
Julian Oes authored
This should fix the macOS build.
-
- Apr 04, 2019
-
- Apr 03, 2019
-
-
PX4 Build Bot authored
- sitl_gazebo in PX4/Firmware (d36c0e13): https://github.com/PX4/sitl_gazebo/commit/2f0070ec6c29c34b9bae10ac03224775627c338a - sitl_gazebo current upstream: https://github.com/PX4/sitl_gazebo/commit/e0dfe7ea45c849e676c201b7428bf8df975d4790 - Changes: https://github.com/PX4/sitl_gazebo/compare/2f0070ec6c29c34b9bae10ac03224775627c338a...e0dfe7ea45c849e676c201b7428bf8df975d4790 e0dfe7e 2019-03-11 Jannik Beyerstedt - Fix compiler error with openCV (C++11) on macOS
-
bresch authored
-
bresch authored
Parameter update - Add parameter_update.py script used to rename the BlockParam variables with the new strict naming convention
-
- Apr 02, 2019
-
-
Nico van Duijn authored
This updates the submodule sitl_gazebo to include the iris_obs_avoid sdf model
-
Nico van Duijn authored
-
- Mar 27, 2019
-
-
Julian Oes authored
This is a workaround for the write timeout that we have seen for some host computers trying to flash the firmware. We don't know the root cause of the problem but we do observed the following: - For blocking writes with timeout (Pyserial write_timeout=0.5): write() throws SerialTimeoutException. In systrace we see that the select() call after write waiting for the write to be finished hangs and finally times out. - For blocking writes without timeout (Pyserial write_timeout=None): write() hangs indefinitely. In systrace we see that the select() call after write waiting for the write to be finished hangs. - For non-blocking writes: write() works but flush() hangs. In systrace we see that ioctl(fd, TCSBRK, 1) which is (correctly) triggered by termios tcdrain hangs. Inspecting USB traffic using usbmon, we can see that the data which is written actually seems to be sent and looking at responses from the Pixhawk bootloader and the timings it looks like all the data has arrived. This workaround uses non-blocking writes without flushing and this seemed to prevent the issue from happening so far. Debugging was done in collaboration with Beat Küng and David Sidrane.
-
Julian Oes authored
If we dont explicitly check for pyserial, we can have the case where the import works but the Serial object creation fails. However, we don't see this because we have this huge try/catch block which swallows everything.
-
- Mar 18, 2019
-
-
johannes authored
-
- Mar 16, 2019
-
-
Daniel Agar authored
- fixes #11666
-
- Mar 15, 2019
-
-
Beat Küng authored
-
Beat Küng authored
-
Beat Küng authored
Brings https://github.com/PX4/jMAVSim/pull/97.
-
- Mar 09, 2019
-
-
Anthony Lamping authored
-
- Mar 06, 2019
-
-
Daniel Agar authored
- jMAVSim in PX4/Firmware (a97151fe): https://github.com/PX4/jMAVSim/commit/0c25b7c18990a64fc851cfd7fe3aac9a4060aea3 - jMAVSim current upstream: https://github.com/PX4/jMAVSim/commit/8b2f4568e05935af57782fd0db9a434f733cc800 - Changes: https://github.com/PX4/jMAVSim/compare/0c25b7c18990a64fc851cfd7fe3aac9a4060aea3...8b2f4568e05935af57782fd0db9a434f733cc800 8b2f456 2019-02-28 Julian Oes - Merge pull request #95 from PX4/shell-style 3d0174a 2019-02-27 Matthias Grob - Fix shell script style
-
- Feb 24, 2019
-
-
Matthias Grob authored
-
- Feb 22, 2019
-
-
PX4 Build Bot authored
- sitl_gazebo in PX4/Firmware (4e792b24): https://github.com/PX4/sitl_gazebo/commit/b34a96e7e5572209d21b9445be048c77ef041baa - sitl_gazebo current upstream: https://github.com/PX4/sitl_gazebo/commit/2e80474653bcb7808a7dfced4cf403ef607d69da - Changes: https://github.com/PX4/sitl_gazebo/compare/b34a96e7e5572209d21b9445be048c77ef041baa...2e80474653bcb7808a7dfced4cf403ef607d69da 2e80474 2019-02-18 Elia Tarasov - fix comment for mag strength table unit 9a9a137 2019-02-18 Elia Tarasov - fix comment for the file name 7c49b2f 2019-02-18 Elia Tarasov - add units to mag variables c004d94 2019-02-18 Elia Tarasov - fix magnetic field calculation by using geo lookup table e9a3940 2019-02-18 Elia Tarasov - fix comment on magnetic data source and properties c76ac17 2019-02-18 Elia Tarasov - copy magnetic data tables and functions from ecl/geo_lookup 28f59c5 2019-02-18 Elia Tarasov - add constrain function 8c869ed 2019-02-18 Elia Tarasov - fix linker complain on multiple definitions b5213a7 2019-02-18 Elia Tarasov - add getters for mag inclination and strength d311233 2019-02-15 Elia Tarasov - fix D-component of magnetic field for Zurich according to WMM2015
-
- Feb 19, 2019
-
-
Beat Küng authored
Includes https://github.com/PX4/sitl_gazebo/pull/283
-
- Feb 18, 2019
-
-
Julian Oes authored
This updates the jMAVSim submodule which includes a fix for HITL. In order to fix HITL, a CLI argument `-lockstep` was required to enable lockstep. This has now been added to the command in jmavsim_run.sh.
-
JohannesBrand authored
* refactor ekf analysis part 1: move plotting to functions * add plot_check_flags plot function * put plots in seperate file * use object-oriented programming for plotting * move functions for post processing and pdf report creation to new files * add in_air_detector and description as a csv file * refactor metrics and checks into separate functions * refactor metrics into seperate file, seperate plotting * ecl-ekf tools: re-structure folder and move results table generation * ecl-ekf-tool: fix imports and test_results_table * ecl-ekf tools: bugfix output observer tracking error plot * ecl-ekf-tools: update batch processing to new api, fix exception handling * ecl-ekf-tools: use correct in_air_detector * ecl-ekf-tools: rename csv file containing the bare test results table * ecl-tools: refactor for improving readability * ecl-ekf tools: small plotting bugfixes * ecl-ekf tools: small bugfixes in_air time, on_ground_trans, filenames * ecl-ekf-tools: fix amber metric bug * ecl-ekf-tools: remove custom function in inairdetector * ecl-ekf-tools: remove import of pandas * ecl-ekf-tools: add python interpreter to the script start * ecl-ekf-tools pdf_report: fix python interpreter line * px4-dev-ros-kinetic: update container tag to 2019-02-13 * ecl-ekf-tools python interpreter line: call python3 bin directly * ecl-ekf-tools: change airtime from namedtuple to class for python 3.5 * ecl-ekf-tools: update docker image px4-dev-ros-kinetic * ecl-ekf-tools: fix memory leak by correctly closing matplotlib figures
-
- Feb 10, 2019
-
-
Daniel Agar authored
- this updates all containers except for px4-dev-snapdragon
-
Daniel Agar authored
-
- Feb 08, 2019
- Feb 05, 2019
-
-
Daniel Agar authored
-