Commit 52aa1f7e authored by ffedoroff's avatar ffedoroff Committed by Marcel Stör
Browse files

Fix typo (#1715)

parent c7589080
...@@ -49,7 +49,7 @@ static void gpio_intr_callback_task (task_param_t param, uint8 priority) ...@@ -49,7 +49,7 @@ static void gpio_intr_callback_task (task_param_t param, uint8 priority)
NODE_DBG("pin:%d, level:%d \n", pin, level); NODE_DBG("pin:%d, level:%d \n", pin, level);
if(gpio_cb_ref[pin] != LUA_NOREF) { if(gpio_cb_ref[pin] != LUA_NOREF) {
// GPIO callbacks are run in L0 and inlcude the level as a parameter // GPIO callbacks are run in L0 and include the level as a parameter
lua_State *L = lua_getstate(); lua_State *L = lua_getstate();
NODE_DBG("Calling: %08x\n", gpio_cb_ref[pin]); NODE_DBG("Calling: %08x\n", gpio_cb_ref[pin]);
// //
......
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