Search results

  1. R

    Is it me, or is the simulator awry?

    When I present the following to the simulator, it runs forever. The outer loop seems to never notice that b0 has become zero. #picaxe 14m let b0 = 2 do while b0 <> 0 let b1 = 3 do let b2 = b1 * b0 dec b1 loop while b1 <> 0 dec b0 loop stop Have I stumbled over a problem in the...
  2. R

    A newbie question about serin command

    In the Command Summary, the write-up of the serin command says: "All processing stops until the new serial data byte is received." Suppose that at some time in the past my program issued a servo or a servopos command. As I understand it, something somewhere has been pulsing the servo output...
Top