Select one of the symbols to view example projects that use it.
 
Outline
#include "common/new.hpp"
#include "ncp_hdlc.hpp"
ot
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/src/ncp/esp_openthread_ncp_hdlc.cpp
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "common/new.hpp" #include "ncp_hdlc.hpp" namespace ot { namespace Ncp { static OT_DEFINE_ALIGNED_VAR(sNcpRaw, sizeof(NcpHdlc), uint64_t); extern "C" void otNcpHdlcInit(otInstance *aInstance, otNcpHdlcSendCallback aSendCallback) { NcpHdlc *ncpHdlc = nullptr; Instance *instance = static_cast<Instance *>(aInstance); ncpHdlc = new (&sNcpRaw) NcpHdlc(instance, aSendCallback); if (ncpHdlc == nullptr || ncpHdlc != NcpBase::GetNcpInstance()) { OT_ASSERT(false); }{...} }{ ... } }{...} // namespace Ncp }{...} // namespace ot
Details
Show:
from
Types: Columns: