Skip to content

Commit

Permalink
Comms: Convert LogReplayLink to Signals/Slots
Browse files Browse the repository at this point in the history
  • Loading branch information
HTRamsey committed Sep 7, 2024
1 parent 990189b commit 4f7a199
Show file tree
Hide file tree
Showing 5 changed files with 369 additions and 428 deletions.
2 changes: 1 addition & 1 deletion libs/mavlink/include/mavlink/v2.0
Submodule v2.0 updated 67 files
+3 −3 ASLUAV/ASLUAV.h
+1 −1 ASLUAV/mavlink.h
+1 −1 ASLUAV/version.h
+2 −2 AVSSUAS/AVSSUAS.h
+1 −1 AVSSUAS/mavlink.h
+1 −1 AVSSUAS/version.h
+4 −4 all/all.h
+1 −1 all/mavlink.h
+1 −1 all/version.h
+3 −3 ardupilotmega/ardupilotmega.h
+1 −1 ardupilotmega/mavlink.h
+1 −1 ardupilotmega/version.h
+7 −20 common/common.h
+1 −1 common/mavlink.h
+6 −6 common/mavlink_msg_adsb_vehicle.h
+13 −41 common/mavlink_msg_camera_information.h
+6 −6 common/mavlink_msg_global_position_int.h
+13 −41 common/mavlink_msg_video_stream_information.h
+8 −10 common/testsuite.h
+1 −1 common/version.h
+1 −1 csAirLink/csAirLink.h
+1 −1 csAirLink/mavlink.h
+1 −1 csAirLink/version.h
+2 −2 cubepilot/cubepilot.h
+1 −1 cubepilot/mavlink.h
+1 −1 cubepilot/version.h
+6 −92 development/development.h
+1 −1 development/mavlink.h
+6 −6 development/mavlink_msg_battery_status_v2.h
+0 −456 development/mavlink_msg_fuel_status.h
+0 −568 development/mavlink_msg_gnss_integrity.h
+0 −138 development/testsuite.h
+1 −1 development/version.h
+1 −1 icarous/icarous.h
+1 −1 icarous/mavlink.h
+1 −1 icarous/version.h
+3 −3 matrixpilot/matrixpilot.h
+1 −1 matrixpilot/mavlink.h
+1 −1 matrixpilot/version.h
+2 −2 message_definitions/all.xml
+11 −30 message_definitions/common.xml
+2 −152 message_definitions/development.xml
+1 −1 message_definitions/matrixpilot.xml
+1 −1 minimal/mavlink.h
+1 −1 minimal/minimal.h
+1 −1 minimal/version.h
+1 −1 paparazzi/mavlink.h
+2 −2 paparazzi/paparazzi.h
+1 −1 paparazzi/version.h
+1 −1 python_array_test/mavlink.h
+2 −2 python_array_test/python_array_test.h
+1 −1 python_array_test/version.h
+1 −1 standard/mavlink.h
+1 −1 standard/standard.h
+1 −1 standard/version.h
+1 −1 storm32/mavlink.h
+3 −3 storm32/storm32.h
+1 −1 storm32/version.h
+1 −1 test/mavlink.h
+1 −1 test/test.h
+1 −1 test/version.h
+1 −1 uAvionix/mavlink.h
+2 −2 uAvionix/uAvionix.h
+1 −1 uAvionix/version.h
+1 −1 ualberta/mavlink.h
+2 −2 ualberta/ualberta.h
+1 −1 ualberta/version.h
2 changes: 1 addition & 1 deletion src/Comms/LinkInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class LinkInterface : public QThread
Q_INVOKABLE virtual void disconnect() = 0;

virtual bool isConnected() const = 0;
virtual bool isLogReplay() { return false; }
virtual bool isLogReplay() const { return false; }
virtual bool isSecureConnection() { return false; } ///< Returns true if the connection is secure (e.g. USB, wired ethernet)

SharedLinkConfigurationPtr linkConfiguration() { return _config; }
Expand Down
Loading

0 comments on commit 4f7a199

Please sign in to comment.