+static int node_wakeup_enable( lua_State* L ) +{ + s32 pin, mode; + size_t sl; + const char *str; + + pin = luaL_checkinteger( L, 1 ); + MOD_CHECK_ID( gpio, pin ); + if(pin==0) + return luaL_error( L, "no interrupt for D0" ); ...