Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3DR GPS not reporting correct coordinates in nmea mode #20

Closed
AngeloDP opened this issue Sep 12, 2012 · 2 comments
Closed

3DR GPS not reporting correct coordinates in nmea mode #20

AngeloDP opened this issue Sep 12, 2012 · 2 comments

Comments

@AngeloDP
Copy link

I connected 3DR mtk gps module and have two issues.
PX4FMU is in standalone, connected as suggested. Everything is running fine with latest firmware.

  1. when launching gps in nmea mode, QGC shows "rounded" coordinates : 460000000,60000000 instead of 461234567,67654321.
    I think there is a bug in nmea_helper.c, nmea_loop routine:
    nmea_gps->lat = (int32_t)ndeg2degree(info->lat) * 1e7;
    nmea_gps->lon = (int32_t)ndeg2degree(info->lon) * 1e7;
    should be (not tested)
    nmea_gps->lat = (int32_t) (ndeg2degree(info->lat) * 1e7);
    nmea_gps->lon = (int32_t) (ndeg2degree(info->lon) * 1e7);

  2. when launching gps in mtk mode, gps module gets a lock, but coordinates are never updated. QGC always receive 0,0.

Angelo

@LorenzMeier
Copy link
Member

Please try the current master state, it contains a number of fixes based on your reports and should resolve issue. Please let us know if not.

@AngeloDP
Copy link
Author

Both issues are resolved now.
Thanks.

Angelo

julianoes added a commit that referenced this issue Sep 27, 2014
mf checker: fix landing check, ensure feedback from all checks is sent
MaEtUgR pushed a commit that referenced this issue Jan 24, 2017
* Wireless UART: Need more bandwidth

* Manage link setup on tap automatically based on param
priseborough pushed a commit that referenced this issue Mar 1, 2017
* Wireless UART: Need more bandwidth

* Manage link setup on tap automatically based on param
PX4BuildBot added a commit that referenced this issue Nov 5, 2020
    - jsbsim_bridge in PX4/Firmware (bde5cad): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 5, 2020
    - jsbsim_bridge in PX4/Firmware (149ac16): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 6, 2020
    - jsbsim_bridge in PX4/Firmware (91d1825): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 6, 2020
    - jsbsim_bridge in PX4/Firmware (91d1825): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 7, 2020
    - jsbsim_bridge in PX4/Firmware (91d1825): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 8, 2020
    - jsbsim_bridge in PX4/Firmware (91d1825): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 8, 2020
    - jsbsim_bridge in PX4/Firmware (5ce0b5a): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 9, 2020
    - jsbsim_bridge in PX4/Firmware (defa437): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 9, 2020
    - jsbsim_bridge in PX4/Firmware (defa437): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 10, 2020
    - jsbsim_bridge in PX4/Firmware (defa437): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 10, 2020
    - jsbsim_bridge in PX4/Firmware (d33a48e): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 12, 2020
    - jsbsim_bridge in PX4/Firmware (68f2495): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 12, 2020
    - jsbsim_bridge in PX4/Firmware (5f0c572): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 13, 2020
    - jsbsim_bridge in PX4/Firmware (66edc82): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
PX4BuildBot added a commit that referenced this issue Nov 13, 2020
    - jsbsim_bridge in PX4/Firmware (66edc82): PX4/px4-jsbsim-bridge@9f46d55
    - jsbsim_bridge current upstream: PX4/px4-jsbsim-bridge@c51a61b
    - Changes: PX4/px4-jsbsim-bridge@9f46d55...c51a61b

    c51a61b 2020-11-04 JaeyoungLim - Merge pull request #11 from PX4/pr-upstream-merge
ddd6e91 2020-11-03 JaeyoungLim - Merge branch 'master' into pr-upstream-merge
73757b1 2020-11-02 JaeyoungLim - Run code style checks (#40)
d185fab 2020-11-02 Matt Vacanti - Enable GPS publication of COG and minor format cleanup (#39)
cce6274 2020-11-02 JaeyoungLim - Add ROS support to the px4-jsbsim-bridge (#20)
72cff55 2020-10-30 Roman Bapst - updated Rascal model: use a much weaker motor (#38)
70a83e6 2020-10-29 Matt Vacanti - Improve baro drift noise and enable user XML mapping of JSBSim baro variables (#37)
610ca97 2020-10-28 Matt Vacanti - Improve Airspeed Sensor Performance and Enable User Defined XML Configuration (#30)
006cdd1 2020-10-23 JaeyoungLim - Enable faster than realtime execution (#29)
aa8997c 2020-10-20 Matt Vacanti - Enable user defined and JSBSim Magnetometer XML Input Mapping (#26)
13d557f 2020-10-19 JaeyoungLim - Change remote for flightgear rascal (#25)
d60ff80 2020-10-16 Matt Vacanti - Enable user defined IMU Parameters from JSBSim (#24)
Igor-Misic pushed a commit to hacklabos/PX4-Autopilot that referenced this issue Aug 14, 2023
…_garble

Distance sensor 1.13 issue quick fix
NicholasCL1994 pushed a commit to NicholasCL1994/PX4-Autopilot that referenced this issue Aug 21, 2024
dagar pushed a commit that referenced this issue Oct 16, 2024
Prepend pyuavcan in source directory to sys.path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants