Hi, I followed the tutorial and run a blink startup function to make LED connected to D7 pin blink.
After I run startup, I found that the LED was always on, and no blink.
Then I run a command to modify the callee toggle7 to see if something changed:
function toggle7 {d7=0;} // I founs that LED was suddenly off
function toggle7 {d7=1;}// I founs that LED was suddenly on
function toggle7 {d7=!d7;} // I expect LEDto blink, but it failed.