Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion provision/headers/ProvisionStorage.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ struct Storage : public GenericStorage,
CHIP_ERROR SetTestEventTriggerKey(const ByteSpan & value);
CHIP_ERROR GetTestEventTriggerKey(MutableByteSpan & keySpan) override;

CHIP_ERROR DecryptUsingOtaTlvEncryptionKey(MutableByteSpan & block, uint32_t & mIVOffset);
CHIP_ERROR DecryptUsingOtaTlvEncryptionKey(MutableByteSpan & block, uint32_t & mIVOffset) override;
CHIP_ERROR GetOtaTlvEncryptionKeyId(uint32_t & value) override;

//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include "radio_security.h"
#include "radio_state.h"
#include <assert.h>
#include <cinttypes>
#include <openthread-core-config.h>
#include <openthread-system.h>
#include <openthread/link.h>
Expand Down Expand Up @@ -707,7 +708,7 @@

if (status != SL_RAIL_STATUS_NO_ERROR)
{
otLogWarnPlat("Failed to configure radio events: %lu", status);
otLogWarnPlat("Failed to configure radio events: %" PRIu32, status);
}
sCurrentEventConfig = newEventConfig;
}
Expand Down Expand Up @@ -2610,10 +2611,12 @@
return rxPacketBuf;
}

#if OPENTHREAD_CONFIG_MULTIPLE_INSTANCE_ENABLE
static inline bool isRxPacketBroadcast(void)
{
return (sReceive.instance == nullptr);
}
#endif // OPENTHREAD_CONFIG_MULTIPLE_INSTANCE_ENABLE

static void deliverRxPacketToInstance(otInstance *aInstance)
{
Expand Down
Loading