1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

Bad voltages on simu V4

This commit is contained in:
bsongis 2012-02-23 21:33:54 +00:00
parent 4200c203b6
commit 983fb132e2

View file

@ -427,7 +427,11 @@ int main(int argc,char **argv)
uint16_t anaIn(uint8_t chan)
{
if (chan == 7)
#ifdef PCBV4
return 150;
#else
return 1500;
#endif
else if (chan<4)
return th9xSim->sliders[chan]->getValue();
else