Skip to content

Commit d141ece

Browse files
committed
Added FP_CMD 'FP_LOAD_XML'
1 parent 346f528 commit d141ece

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

include/am_utils/flightplan_type.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
//# key="FP_EXECUTE" value="id" execute flight plan with id
1919
//# key="FP_ABORT" value="" abort currently executing flight plan
2020
//# key="FP_PAUSE" value="" pause currently executing flight plan
21+
//# key="FP_LOAD_XML_FILE value="file name" load XML flight plan from file
2122

2223
/**
2324
* Defines for the commands used in VxFlightPlan service requests
@@ -31,6 +32,7 @@ enum class FP_CMD { FP_LOAD=0,
3132
FP_START,
3233
FP_ABORT,
3334
FP_PAUSE,
35+
FP_LOAD_XML_FILE,
3436
};
3537

3638
extern std::string FP_CMD_KEY[];

src/am_utils/flightplan_type.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ std::string FP_CMD_KEY[] {
1616
"FP_START",
1717
"FP_ABORT",
1818
"FP_PAUSE",
19+
"FP_LOAD_XML_FILE",
1920
};
2021

2122

0 commit comments

Comments
 (0)