2022-08-28 10:54:34 +00:00
|
|
|
/* bt_composite.cpp */
|
|
|
|
|
|
|
|
#include "bt_composite.h"
|
|
|
|
|
|
|
|
String BTComposite::get_configuration_warning() const {
|
|
|
|
String warning = BTTask::get_configuration_warning();
|
2022-12-15 07:26:52 +00:00
|
|
|
if (!warning.is_empty()) {
|
2022-08-28 10:54:34 +00:00
|
|
|
warning += "\n";
|
|
|
|
}
|
|
|
|
if (get_child_count() < 1) {
|
|
|
|
warning += "Composite should have at least one child task.\n";
|
|
|
|
}
|
|
|
|
return warning;
|
|
|
|
}
|