Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make sure that
READSB_AUTOGAIN_INITIAL_GAIN
is also used at first s…
…tartup of readsb
- Loading branch information
58744dd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a quick reminder that
if condition then then-clause else else-clause
andcondition && then-clause || else-clause
are not semantically equivalent... This ONLY works if thethen-clause
always returns true. So I think here it does the right thing... but it's something I tripped over more than once.