Dumb CAN wake-up #3660

This commit is contained in:
rusefillc 2022-01-15 11:37:24 -05:00
parent d6dea65b80
commit eb580414ce
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ void configureRusefiLuaUtilHooks(lua_State* l) {
lua_register(l, "interpolate", lua_interpolate);
#if defined(STM32F4) || defined(STM32F7)
lua_register(l, "mcu_stop", [](lua_State* l) {
lua_register(l, "mcu_standby", [](lua_State* l) {
stm32_standby();
return 0;
});
#endif