Unverified Commit 4d784798 authored by Gregor Hartmann's avatar Gregor Hartmann Committed by GitHub
Browse files

Add deprecation note to node.flashreload (#3273)

parent d88c14b9
......@@ -652,6 +652,12 @@ static int node_lfsreload (lua_State *L) {
return 1;
}
// Lua: n = node.flashreload(lfsimage)
static int lua_lfsreload_deprecated (lua_State *L) {
platform_print_deprecation_note("node.flashreload", "soon. Use node.LFS interface instead");
return node_lfsreload (L);
}
// Lua: n = node.flashindex(module)
// Lua: n = node.LFS.get(module)
static int node_lfsindex (lua_State *L) {
......@@ -872,8 +878,8 @@ LROT_BEGIN(node, NULL, 0)
LROT_FUNCENTRY( heap, node_heap )
LROT_FUNCENTRY( info, node_info )
LROT_TABENTRY( task, node_task )
LROT_FUNCENTRY( flashreload, lua_lfsreload_deprecated )
LROT_FUNCENTRY( flashindex, node_lfsindex )
LROT_FUNCENTRY( flashreload, node_lfsreload )
LROT_TABENTRY( LFS, node_lfs )
LROT_FUNCENTRY( setonerror, node_setonerror )
LROT_FUNCENTRY( startupcommand, node_startupcommand )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment