mirror of https://github.com/ArduPilot/ardupilot
AP_Scripting: allow maunal apobject bindings
This commit is contained in:
parent
ecaa3fbcf7
commit
a6b5febe3d
|
@ -1111,8 +1111,11 @@ void handle_ap_object(void) {
|
|||
}
|
||||
string_copy(&(node->dependency), depends);
|
||||
|
||||
} else if (strcmp(type, keyword_manual) == 0) {
|
||||
handle_manual(node, ALIAS_TYPE_MANUAL);
|
||||
|
||||
} else {
|
||||
error(ERROR_SINGLETON, "AP_Objects only support renames, methods or semaphore keyowrds (got %s)", type);
|
||||
error(ERROR_SINGLETON, "AP_Objects only support renames, methods, semaphore or manual keywords (got %s)", type);
|
||||
}
|
||||
|
||||
// check that we didn't just add 2 singleton flags
|
||||
|
|
Loading…
Reference in New Issue