Commit 8c419b8a authored by Vowstar's avatar Vowstar
Browse files

Merge pull request #692 from Aeprox/dev

Fix adc.readvdd33
parents 340ef8fc 5ab8de34
......@@ -34,12 +34,12 @@ static int adc_readvdd33( lua_State* L )
}
else
{
vdd33 = readvdd33();
vdd33 = system_get_vdd33();
}
}
else
{
vdd33 = readvdd33();
vdd33 = system_get_vdd33();
}
lua_pushinteger(L, vdd33);
return 1;
......
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