> > > Follows the Nut/OS coding rules (we never use '1 == x', always 'x == 1') > > Why is that? While (x == 1) seems more natural (1 == x) is safer since the accidental (1 = x) will generate a compiler error.