We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d389b71 commit cf77a67Copy full SHA for cf77a67
src/app/ReadHandler.h
@@ -273,7 +273,9 @@ class ReadHandler : public Messaging::ExchangeDelegate
273
*/
274
CHIP_ERROR SetMaxReportingInterval(uint16_t aMaxInterval)
275
{
276
-#if !CHIP_CONFIG_ENABLE_ICD_LIT
+#if CHIP_CONFIG_ENABLE_ICD_LIT
277
+ ChipLogDetail(DataManagement, "SetMaxReportingInterval is ignored for LIT servers.");
278
+#else
279
VerifyOrReturnError(IsIdle(), CHIP_ERROR_INCORRECT_STATE);
280
VerifyOrReturnError(mMinIntervalFloorSeconds <= aMaxInterval, CHIP_ERROR_INVALID_ARGUMENT);
281
VerifyOrReturnError(aMaxInterval <= std::max(GetPublisherSelectedIntervalLimit(), mSubscriberRequestedMaxInterval),
0 commit comments