mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
1d826c7a2b
openthread: use a certain version of esp_openthread_cli_extension managed component
32 lines
626 B
C
32 lines
626 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <esp_openthread.h>
|
|
#include <openthread/platform/radio.h>
|
|
#include <openthread/platform/toolchain.h>
|
|
#include <stdint.h>
|
|
#include <utils/uart.h>
|
|
|
|
OT_TOOL_WEAK void otPlatUartReceived(const uint8_t *, uint16_t)
|
|
{
|
|
}
|
|
|
|
OT_TOOL_WEAK void otPlatUartSendDone(void)
|
|
{
|
|
}
|
|
|
|
OT_TOOL_WEAK void otPlatDiagRadioTransmitDone(otInstance *, otRadioFrame *, otError)
|
|
{
|
|
}
|
|
|
|
OT_TOOL_WEAK void otPlatDiagRadioReceiveDone(otInstance *, otRadioFrame *, otError)
|
|
{
|
|
}
|
|
|
|
OT_TOOL_WEAK void otPlatDiagAlarmFired(otInstance *)
|
|
{
|
|
}
|