This commit is contained in:
parent
41ec6dc0f2
commit
2262a15e35
@ -2134,6 +2134,10 @@ void CoreController::announceBootCounts() {
|
||||
totalBootCount & 0xffffffff);
|
||||
}
|
||||
|
||||
MessageQueueId_t CoreController::getCommandQueue() const {
|
||||
return ExtendedControllerBase::getCommandQueue();
|
||||
}
|
||||
|
||||
bool CoreController::isNumber(const std::string &s) {
|
||||
return !s.empty() && std::find_if(s.begin(), s.end(),
|
||||
[](unsigned char c) { return !std::isdigit(c); }) == s.end();
|
||||
|
@ -231,6 +231,7 @@ class CoreController : public ExtendedControllerBase,
|
||||
bool remountAttemptFlag = true;
|
||||
#endif
|
||||
|
||||
MessageQueueId_t getCommandQueue() const override;
|
||||
ReturnValue_t getParameter(uint8_t domainId, uint8_t uniqueIdentifier,
|
||||
ParameterWrapper *parameterWrapper,
|
||||
const ParameterWrapper *newValues, uint16_t startAtIndex) override;
|
||||
|
Loading…
Reference in New Issue
Block a user