Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_log.h"
#include "esp_openthread.h"
#include "esp_openthread_common_macro.h"
#include "esp_system.h"
#include "common/logging.hpp"
#include "openthread/platform/misc.h"
s_mcu_power_state
otPlatReset(otInstance *)
otPlatGetResetReason(otInstance *)
otPlatWakeHost()
otPlatSetMcuPowerState(otInstance *, otPlatMcuPowerState)
otPlatGetMcuPowerState(otInstance *)
otPlatAssertFail(const char *, int)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/src/port/esp_openthread_misc.c
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_log.h" #include "esp_openthread.h" #include "esp_openthread_common_macro.h" #include "esp_system.h" #include "common/logging.hpp" #include "openthread/platform/misc.h"6 includes static otPlatMcuPowerState s_mcu_power_state = OT_PLAT_MCU_POWER_STATE_ON; void otPlatReset(otInstance *aInstance) { esp_restart(); }{ ... } otPlatResetReason otPlatGetResetReason(otInstance *instance) { switch (esp_reset_reason()) { case ESP_RST_UNKNOWN: return OT_PLAT_RESET_REASON_UNKNOWN;... case ESP_RST_POWERON: return OT_PLAT_RESET_REASON_POWER_ON;... case ESP_RST_EXT: return OT_PLAT_RESET_REASON_EXTERNAL;... case ESP_RST_SW: return OT_PLAT_RESET_REASON_SOFTWARE;... case ESP_RST_PANIC: return OT_PLAT_RESET_REASON_FAULT;... case ESP_RST_INT_WDT: return OT_PLAT_RESET_REASON_WATCHDOG;... case ESP_RST_TASK_WDT: return OT_PLAT_RESET_REASON_WATCHDOG;... case ESP_RST_WDT: return OT_PLAT_RESET_REASON_WATCHDOG;... default: return OT_PLAT_RESET_REASON_OTHER;... }{...} }{ ... } void otPlatWakeHost(void) { // Not Implemented. }{ ... } otError otPlatSetMcuPowerState(otInstance *instance, otPlatMcuPowerState state) { otError error = OT_ERROR_NONE; OT_UNUSED_VARIABLE(instance); switch (state) { case OT_PLAT_MCU_POWER_STATE_ON: case OT_PLAT_MCU_POWER_STATE_LOW_POWER: s_mcu_power_state = state; break; ... default: error = OT_ERROR_FAILED; break;... }{...} return error; }{ ... } otPlatMcuPowerState otPlatGetMcuPowerState(otInstance *instance) { OT_UNUSED_VARIABLE(instance); return s_mcu_power_state; }{ ... } void otPlatAssertFail(const char *filename, int line) { ESP_LOGE(OT_PLAT_LOG_TAG, "Assert failed at %s:%d", filename, line); assert(false); }{ ... }
Details