Updated to latest IDF.
This fixes the panic-on-restart issue and the crash-on-uart-input-before-flash-mapped issue. Node module updated to reflect new function names for sleep/restart.
This commit is contained in:
parent
2951e8e075
commit
c4911ca391
|
@ -19,7 +19,7 @@ return 1;
|
||||||
|
|
||||||
static int node_restart (lua_State *L)
|
static int node_restart (lua_State *L)
|
||||||
{
|
{
|
||||||
system_restart ();
|
esp_restart ();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ static int node_restart (lua_State *L)
|
||||||
static int node_dsleep (lua_State *L)
|
static int node_dsleep (lua_State *L)
|
||||||
{
|
{
|
||||||
uint64_t us = luaL_optinteger (L, 1, 0);
|
uint64_t us = luaL_optinteger (L, 1, 0);
|
||||||
system_deep_sleep (us);
|
esp_deep_sleep (us);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d467eabadbc90aa0703d3e131e5751f9d09ebdf8
|
Subproject commit 35ae2cd1a519d22fd05a31f7fd87ca504219f38c
|
Loading…
Reference in New Issue