[radio] otPlatRadioGetNow fallback to otPlatTimeGet (#10646)

This commit makes the default otPlatRadioGetNow implementation fallback
to to otPlatTimeGet so that the default one is a correct implementation
in single chip architecture.
This commit is contained in:
Yakun Xu
2024-08-28 10:54:19 -07:00
committed by GitHub
parent f91610f3f3
commit 3a525f3b57
+1 -1
View File
@@ -253,7 +253,7 @@ OT_TOOL_WEAK uint64_t otPlatRadioGetNow(otInstance *aInstance)
{
OT_UNUSED_VARIABLE(aInstance);
return UINT64_MAX;
return otPlatTimeGet();
}
OT_TOOL_WEAK uint32_t otPlatRadioGetBusSpeed(otInstance *aInstance)