Select one of the symbols to view example projects that use it.
 
Outline
esp
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/private_include/esp_radio_spinel_adapter.hpp
 
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: 2021-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once namespace esp { namespace radio_spinel { /** * This class defines an template to adapt both UartSpinelInterface and SpiSpinelInterface. * *//* ... */ template <typename InterfaceType> class SpinelInterfaceAdapter { public: SpinelInterfaceAdapter(void) {} ~SpinelInterfaceAdapter(void) {} InterfaceType &GetSpinelInterface(void) { return mSpinelInterface; } ... private: InterfaceType mSpinelInterface;... }{ ... }; }{...} // namespace radio_spinel }{...} // namespace esp
Details