mirror of
https://github.com/espressif/openthread.git
synced 2026-08-25 03:39:52 +00:00
Radio API: set short address, extended address, and panid must not fail. (#774)
This commit is contained in:
@@ -96,19 +96,16 @@ extern "C" {
|
||||
{
|
||||
}
|
||||
|
||||
ThreadError otPlatRadioSetPanId(otInstance *, uint16_t)
|
||||
void otPlatRadioSetPanId(otInstance *, uint16_t)
|
||||
{
|
||||
return kThreadError_None;
|
||||
}
|
||||
|
||||
ThreadError otPlatRadioSetExtendedAddress(otInstance *, uint8_t *)
|
||||
void otPlatRadioSetExtendedAddress(otInstance *, uint8_t *)
|
||||
{
|
||||
return kThreadError_None;
|
||||
}
|
||||
|
||||
ThreadError otPlatRadioSetShortAddress(otInstance *, uint16_t)
|
||||
void otPlatRadioSetShortAddress(otInstance *, uint16_t)
|
||||
{
|
||||
return kThreadError_None;
|
||||
}
|
||||
|
||||
void otPlatRadioSetPromiscuous(otInstance *, bool)
|
||||
|
||||
Reference in New Issue
Block a user