FastLED 3.9.15
Loading...
Searching...
No Matches

◆ getFailedServices()

u8 fl::net::OTA::getFailedServices ( ) const

Get bitmask of services that failed to initialize.

Returns
Bitfield of ota::Service flags indicating which services failed
Note
Check specific services with: (getFailedServices() & (uint8_t)ota::Service::MDNS_FAILED)

Definition at line 87 of file ota.cpp.hpp.

87 {
88 if (!mImpl) {
89 return 0;
90 }
91 return mImpl->getFailedServices();
92}
fl::shared_ptr< fl::platforms::IOTA > mImpl
Definition ota.h:211

References mImpl.