Commit 17504b6e authored by vsky's avatar vsky Committed by Nathaniel Wesley Filardo
Browse files

ads1115 minor cleanup

parent 1f2e5bba
...@@ -251,10 +251,7 @@ static int ads1115_lua_register(lua_State *L, uint8_t chip_id) { ...@@ -251,10 +251,7 @@ static int ads1115_lua_register(lua_State *L, uint8_t chip_id) {
if (config_read != ADS1115_DEFAULT_CONFIG_REG) { if (config_read != ADS1115_DEFAULT_CONFIG_REG) {
return luaL_error(L, "unexpected config value (%p) please reset device before calling this function", config_read); return luaL_error(L, "unexpected config value (%p) please reset device before calling this function", config_read);
} }
ads_ctrl_ud_t *ads_ctrl = (ads_ctrl_ud_t *)lua_newuserdata(L, sizeof(ads_ctrl_ud_t)); ads_ctrl_ud_t *ads_ctrl = lua_newuserdata(L, sizeof(ads_ctrl_ud_t));
if (NULL == ads_ctrl) {
return luaL_error(L, "ads1115 malloc: out of memory");
}
luaL_getmetatable(L, metatable_name); luaL_getmetatable(L, metatable_name);
lua_setmetatable(L, -2); lua_setmetatable(L, -2);
ads_ctrl->chip_id = chip_id; ads_ctrl->chip_id = chip_id;
......
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