You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By which you can see that in line 45, you are not calling the function and checking its return value, you are doing if(function name), and since function name is also the address of the function, the if statement will always have a true statement.
The text was updated successfully, but these errors were encountered:
You write
arduino/cores/w600/wiring_time.c
Lines 39 to 50 in 6148ebc
and you write
arduino/cores/w600/wiring_time.c
Lines 16 to 19 in 6148ebc
By which you can see that in line 45, you are not calling the function and checking its return value, you are doing
if(function name)
, and since function name is also the address of the function, theif
statement will always have atrue
statement.The text was updated successfully, but these errors were encountered: