ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
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 *)
switch
(esp_reset_reason())
case
ESP_RST_UNKNOWN:
case
ESP_RST_POWERON:
case
ESP_RST_EXT:
case
ESP_RST_SW:
case
ESP_RST_PANIC:
case
ESP_RST_INT_WDT:
case
ESP_RST_TASK_WDT:
case
ESP_RST_WDT:
default
otPlatWakeHost()
otPlatSetMcuPowerState(otInstance *, otPlatMcuPowerState)
switch
(state)
case
OT_PLAT_MCU_POWER_STATE_ON:
case
OT_PLAT_MCU_POWER_STATE_LOW_POWER:
default
otPlatGetMcuPowerState(otInstance *)
otPlatAssertFail(const char *, int)
Files
loading...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/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
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
otPlatAssertFail()
esp_restart()
esp_reset_reason()
otPlatWakeHost()
otPlatReset()
otPlatGetResetReason()
otPlatSetMcuPowerState()
otPlatGetMcuPowerState()
false
ESP_LOGE
otError::OT_ERROR_NONE
OT_UNUSED_VARIABLE
OT_PLAT_LOG_TAG
otError::OT_ERROR_FAILED
esp_reset_reason_t::ESP_RST_UNKNOWN
esp_reset_reason_t::ESP_RST_TASK_WDT
esp_reset_reason_t::ESP_RST_INT_WDT
otPlatResetReason::OT_PLAT_RESET_REASON_WATCHDOG
esp_reset_reason_t::ESP_RST_POWERON
esp_reset_reason_t::ESP_RST_SW
esp_reset_reason_t::ESP_RST_PANIC
s_mcu_power_state
otPlatMcuPowerState::OT_PLAT_MCU_POWER_STATE_ON
otPlatResetReason::OT_PLAT_RESET_REASON_POWER_ON
otPlatResetReason::OT_PLAT_RESET_REASON_EXTERNAL
otPlatResetReason::OT_PLAT_RESET_REASON_SOFTWARE
otPlatResetReason::OT_PLAT_RESET_REASON_FAULT
esp_reset_reason_t::ESP_RST_WDT
otPlatResetReason::OT_PLAT_RESET_REASON_OTHER
otPlatReset()::aInstance
otPlatResetReason::OT_PLAT_RESET_REASON_UNKNOWN
esp_reset_reason_t::ESP_RST_EXT
otPlatMcuPowerState::OT_PLAT_MCU_POWER_STATE_LOW_POWER
otPlatMcuPowerState
otInstance
otPlatResetReason
otError