Add deprecation note to node.flashreload (#3273)

This commit is contained in:
Gregor Hartmann 2020-09-08 12:17:12 +02:00 committed by GitHub
parent d88c14b9b6
commit 4d784798a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -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 )