diff --git a/firmware/controllers/lua/lua_hooks.cpp b/firmware/controllers/lua/lua_hooks.cpp index a4327bf33c..8f90ffd1a3 100644 --- a/firmware/controllers/lua/lua_hooks.cpp +++ b/firmware/controllers/lua/lua_hooks.cpp @@ -734,7 +734,11 @@ static int lua_vincpy(lua_State* l) { return 0; } +BOARD_WEAK void boardConfigureLuaHooks(lua_State* lState) { } + void configureRusefiLuaHooks(lua_State* lState) { + boardConfigureLuaHooks(lState); + LuaClass luaTimer(lState, "Timer"); luaTimer .ctor()