From 0f29ddb65894d94be21a2582be0a368095f14050 Mon Sep 17 00:00:00 2001 From: Windell Oskay Date: Sun, 15 Nov 2020 23:22:32 -0800 Subject: [PATCH] Minor cleanup --- docs/ebb.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ebb.html b/docs/ebb.html index 740206e..78283f1 100644 --- a/docs/ebb.html +++ b/docs/ebb.html @@ -808,7 +808,7 @@ ul.no_bullets { @@ -980,7 +980,7 @@ ul.no_bullets {
  • Rate1 and Rate2 are signed 32 bit integers in the range from -2147483648 to 2147483647. The sign of each Rate parameter controls the direction that the axis should turn. The absolute value abs(Rate) of each is added to its axis step Accumulator every 40 μs to determine when steps are taken.
  • -
  • Accel1 and Accel2 are signed 32 bit integers in the range from -2147483648 to 2147483647. These values are added to their respective Rate values every 40 μs and control acceleration or deceleration during a move.
  • +
  • Accel1 and Accel2 are signed 32 bit integers in the range from -2147483648 to 2147483647. These values are added to their respective Rate values every 40 μs and control acceleration or deceleration during a move.
  • Clear is an integer in the range 0 - 3. If it is 1 then the step Accumulator for motor1 is zeroed at the start of the command. If it is 2, then the step Accumulator for motor2 is zeroed at the start of the command. If Clear is 3, then both are cleared.
  • @@ -1036,8 +1036,8 @@ ul.no_bullets { Example 2: LM,25000,33865471,0,0,0\r This example will move axis 1 at a constant speed of 45 steps/s for one second (25000 intervals). Axis 2 does not move. - Example 3: LM,12500,17179000,-687,8592000,687\r - This example will start with axis 1 at 200 steps/second, and axis 2 at 100 steps/second. Over the course of 500 ms, they will end at a speed of 100 steps/second for axis 1 (that is, decelerating) and 200 steps/second for axis 2. The move will take 75 steps on each axis. +
  • Example 3: LM,12500,17179000,-687,8592000,687\r + This example will start with axis 1 at 200 steps/second, and axis 2 at 100 steps/second. Over the course of 500 ms, they will end at a speed of 100 steps/second for axis 1 (that is, decelerating) and 200 steps/second for axis 2. The move will cover 75 steps on each axis.
  • Version History: