Rename inverse_mm_s => inverse_secs

This commit is contained in:
Scott Lahteine
2017-12-02 20:17:51 -06:00
parent 23557f8e77
commit 8056120195
2 changed files with 19 additions and 14 deletions

View File

@ -452,6 +452,7 @@ class Planner {
/**
* The current block. NULL if the buffer is empty.
* This also marks the block as busy.
* WARNING: Called from Stepper ISR context!
*/
static block_t* get_current_block() {
if (blocks_queued()) {
@ -518,7 +519,7 @@ class Planner {
}
/**
* Return the point at which you must start braking (at the rate of -'acceleration') if
* Return the point at which you must start braking (at the rate of -'accel') if
* you start at 'initial_rate', accelerate (until reaching the point), and want to end at
* 'final_rate' after traveling 'distance'.
*