Skip to content

Commit

Permalink
MAVCesium: Switch to newer fork
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
  • Loading branch information
Ryanf55 committed Nov 8, 2024
1 parent b7d20f7 commit 1bfbc65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "MAVProxy/modules/mavproxy_cesium"]
path = MAVProxy/modules/mavproxy_cesium
url = https://github.com/SamuelDudley/MAVCesium.git
url = https://github.com/Ryanf55/MAVCesium.git
4 changes: 4 additions & 0 deletions MAVProxy/mavproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1317,6 +1317,7 @@ def run_startup_scripts():
if platform.system() == 'Windows':
parser.add_option("--no-console", action='store_true', help="don't use GUI console")
parser.add_option("--map", action='store_true', help="load map module")
parser.add_option("--mavcesium", action='store_true', help="Load the MAVCesium web-based 3D map display module")
parser.add_option(
'--load-module',
action='append',
Expand Down Expand Up @@ -1516,6 +1517,9 @@ def quit_handler(signum = None, frame = None):
if opts.map:
process_stdin('module load map')

if opts.mavcesium:
process_stdin('module load cesium')

if (mpstate.settings.state_basedir is not None and
opts.aircraft is not None):
mpstate.aircraft_dir = os.path.join(mpstate.settings.state_basedir, opts.aircraft)
Expand Down
2 changes: 1 addition & 1 deletion MAVProxy/modules/mavproxy_cesium
Submodule mavproxy_cesium updated 1015 files

0 comments on commit 1bfbc65

Please sign in to comment.