We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Is the following instruction right?
sbit led_state = P5^1 led_state= ~led_state
sbit led_state = P5^1; led_state ^= 1; How about this?