Skip to content

Commit

Permalink
[radio] align platform code to otPlatRadioReceiveAt changes
Browse files Browse the repository at this point in the history
  • Loading branch information
edmont committed Sep 27, 2024
1 parent de03ada commit 8cdbed5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/src/radio.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,9 +508,14 @@ otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel)
}

#if OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2
otError otPlatRadioReceiveAt(otInstance *aInstance, uint8_t aChannel, uint32_t aStart, uint32_t aDuration)
otError otPlatRadioReceiveAt(otInstance *aInstance,
uint8_t aChannel,
uint32_t aStart,
uint32_t aDuration,
uint8_t aSlotId)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aSlotId);

bool result;

Expand Down

0 comments on commit 8cdbed5

Please sign in to comment.