2011-02-05 00:55:37 +01:00
|
|
|
/*
|
|
|
|
config.h - compile time configuration
|
|
|
|
Part of Grbl
|
|
|
|
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2012-01-29 04:41:08 +01:00
|
|
|
Copyright (c) 2011-2012 Sungeun K. Jeon
|
2011-02-05 00:55:37 +01:00
|
|
|
|
|
|
|
Grbl is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Grbl is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef config_h
|
|
|
|
#define config_h
|
|
|
|
|
2011-09-24 15:46:41 +02:00
|
|
|
// IMPORTANT: Any changes here requires a full re-compiling of the source code to propagate them.
|
|
|
|
|
2011-02-05 00:55:37 +01:00
|
|
|
#define BAUD_RATE 9600
|
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Define pin-assignments
|
2012-11-09 03:23:47 +01:00
|
|
|
// NOTE: All step bit and direction pins must be on the same port.
|
2011-02-05 00:55:37 +01:00
|
|
|
#define STEPPING_DDR DDRD
|
|
|
|
#define STEPPING_PORT PORTD
|
2012-01-06 18:10:41 +01:00
|
|
|
#define X_STEP_BIT 2 // Uno Digital Pin 2
|
|
|
|
#define Y_STEP_BIT 3 // Uno Digital Pin 3
|
|
|
|
#define Z_STEP_BIT 4 // Uno Digital Pin 4
|
|
|
|
#define X_DIRECTION_BIT 5 // Uno Digital Pin 5
|
|
|
|
#define Y_DIRECTION_BIT 6 // Uno Digital Pin 6
|
|
|
|
#define Z_DIRECTION_BIT 7 // Uno Digital Pin 7
|
2012-11-04 18:48:57 +01:00
|
|
|
#define STEP_MASK ((1<<X_STEP_BIT)|(1<<Y_STEP_BIT)|(1<<Z_STEP_BIT)) // All step bits
|
|
|
|
#define DIRECTION_MASK ((1<<X_DIRECTION_BIT)|(1<<Y_DIRECTION_BIT)|(1<<Z_DIRECTION_BIT)) // All direction bits
|
|
|
|
#define STEPPING_MASK (STEP_MASK | DIRECTION_MASK) // All stepping-related bits (step/direction)
|
2012-01-06 18:10:41 +01:00
|
|
|
|
|
|
|
#define STEPPERS_DISABLE_DDR DDRB
|
|
|
|
#define STEPPERS_DISABLE_PORT PORTB
|
|
|
|
#define STEPPERS_DISABLE_BIT 0 // Uno Digital Pin 8
|
2012-11-04 18:48:57 +01:00
|
|
|
#define STEPPERS_DISABLE_MASK (1<<STEPPERS_DISABLE_BIT)
|
2012-01-06 18:10:41 +01:00
|
|
|
|
2012-11-09 03:23:47 +01:00
|
|
|
// NOTE: All limit bit pins must be on the same port
|
2012-10-01 03:57:10 +02:00
|
|
|
#define LIMIT_DDR DDRB
|
|
|
|
#define LIMIT_PIN PINB
|
2012-10-08 23:57:58 +02:00
|
|
|
#define LIMIT_PORT PORTB
|
2012-10-01 03:57:10 +02:00
|
|
|
#define X_LIMIT_BIT 1 // Uno Digital Pin 9
|
|
|
|
#define Y_LIMIT_BIT 2 // Uno Digital Pin 10
|
|
|
|
#define Z_LIMIT_BIT 3 // Uno Digital Pin 11
|
2012-10-19 05:29:07 +02:00
|
|
|
#define LIMIT_INT PCIE0 // Pin change interrupt enable pin
|
|
|
|
#define LIMIT_INT_vect PCINT0_vect
|
|
|
|
#define LIMIT_PCMSK PCMSK0 // Pin change interrupt register
|
2012-11-04 18:48:57 +01:00
|
|
|
#define LIMIT_MASK ((1<<X_LIMIT_BIT)|(1<<Y_LIMIT_BIT)|(1<<Z_LIMIT_BIT)) // All limit bits
|
2012-10-01 03:57:10 +02:00
|
|
|
|
|
|
|
#define SPINDLE_ENABLE_DDR DDRB
|
|
|
|
#define SPINDLE_ENABLE_PORT PORTB
|
|
|
|
#define SPINDLE_ENABLE_BIT 4 // Uno Digital Pin 12
|
|
|
|
|
|
|
|
#define SPINDLE_DIRECTION_DDR DDRB
|
|
|
|
#define SPINDLE_DIRECTION_PORT PORTB
|
2012-11-10 02:33:38 +01:00
|
|
|
#define SPINDLE_DIRECTION_BIT 5 // Uno Digital Pin 13 (NOTE: D13 can't be pulled-high input due to LED.)
|
2011-02-05 00:55:37 +01:00
|
|
|
|
2012-09-21 19:14:13 +02:00
|
|
|
#define COOLANT_FLOOD_DDR DDRC
|
2012-10-01 03:57:10 +02:00
|
|
|
#define COOLANT_FLOOD_PORT PORTC
|
2012-11-04 18:48:57 +01:00
|
|
|
#define COOLANT_FLOOD_BIT 3 // Uno Analog Pin 3
|
2012-09-21 19:14:13 +02:00
|
|
|
|
2012-11-04 18:48:57 +01:00
|
|
|
// NOTE: Uno analog pins 4 and 5 are reserved for an i2c interface, and may be installed at
|
|
|
|
// a later date if flash and memory space allows.
|
2012-11-15 01:36:29 +01:00
|
|
|
// #define ENABLE_M7 // Mist coolant disabled by default. Uncomment to enable.
|
2012-09-22 01:55:02 +02:00
|
|
|
#ifdef ENABLE_M7
|
2012-09-21 19:14:13 +02:00
|
|
|
#define COOLANT_MIST_DDR DDRC
|
2012-10-01 03:57:10 +02:00
|
|
|
#define COOLANT_MIST_PORT PORTC
|
2012-11-04 18:48:57 +01:00
|
|
|
#define COOLANT_MIST_BIT 4 // Uno Analog Pin 4
|
2012-09-21 19:14:13 +02:00
|
|
|
#endif
|
|
|
|
|
2012-11-09 03:23:47 +01:00
|
|
|
// NOTE: All pinouts pins must be on the same port
|
2012-11-04 18:48:57 +01:00
|
|
|
#define PINOUT_DDR DDRC
|
|
|
|
#define PINOUT_PIN PINC
|
|
|
|
#define PINOUT_PORT PORTC
|
|
|
|
#define PIN_RESET 0 // Uno Analog Pin 0
|
|
|
|
#define PIN_FEED_HOLD 1 // Uno Analog Pin 1
|
|
|
|
#define PIN_CYCLE_START 2 // Uno Analog Pin 2
|
|
|
|
#define PINOUT_INT PCIE1 // Pin change interrupt enable pin
|
|
|
|
#define PINOUT_INT_vect PCINT1_vect
|
|
|
|
#define PINOUT_PCMSK PCMSK1 // Pin change interrupt register
|
|
|
|
#define PINOUT_MASK ((1<<PIN_RESET)|(1<<PIN_FEED_HOLD)|(1<<PIN_CYCLE_START))
|
|
|
|
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
// Default settings (used when resetting eeprom-settings)
|
|
|
|
// TODO: Begin to fill these out for various as-built machines, i.e. config_sherline5400.h
|
|
|
|
#define MICROSTEPS 4
|
|
|
|
#define DEFAULT_X_STEPS_PER_MM (94.488188976378*MICROSTEPS)
|
|
|
|
#define DEFAULT_Y_STEPS_PER_MM (94.488188976378*MICROSTEPS)
|
|
|
|
#define DEFAULT_Z_STEPS_PER_MM (94.488188976378*MICROSTEPS)
|
|
|
|
#define DEFAULT_STEP_PULSE_MICROSECONDS 10
|
|
|
|
#define DEFAULT_MM_PER_ARC_SEGMENT 0.1
|
|
|
|
#define DEFAULT_RAPID_FEEDRATE 500.0 // mm/min
|
|
|
|
#define DEFAULT_FEEDRATE 250.0
|
|
|
|
#define DEFAULT_ACCELERATION (DEFAULT_FEEDRATE*60*60/10.0) // mm/min^2
|
|
|
|
#define DEFAULT_JUNCTION_DEVIATION 0.05 // mm
|
2012-11-08 04:53:03 +01:00
|
|
|
#define DEFAULT_STEPPING_INVERT_MASK ((1<<Y_DIRECTION_BIT)|(1<<Z_DIRECTION_BIT))
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
#define DEFAULT_REPORT_INCHES 0 // false
|
|
|
|
#define DEFAULT_AUTO_START 1 // true
|
|
|
|
#define DEFAULT_INVERT_ST_ENABLE 0 // false
|
|
|
|
#define DEFAULT_HARD_LIMIT_ENABLE 0 // false
|
|
|
|
#define DEFAULT_HOMING_ENABLE 0 // false
|
|
|
|
#define DEFAULT_HOMING_DIR_MASK 0 // move positive dir
|
|
|
|
#define DEFAULT_HOMING_RAPID_FEEDRATE 250.0 // mm/min
|
2012-11-08 04:53:03 +01:00
|
|
|
#define DEFAULT_HOMING_FEEDRATE 25 // mm/min
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
#define DEFAULT_HOMING_DEBOUNCE_DELAY 100 // msec (0-65k)
|
|
|
|
#define DEFAULT_HOMING_PULLOFF 1 // mm
|
|
|
|
#define DEFAULT_STEPPER_IDLE_LOCK_TIME 25 // msec (0-255)
|
|
|
|
#define DEFAULT_DECIMAL_PLACES 3
|
|
|
|
#define DEFAULT_N_ARC_CORRECTION 25
|
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Define runtime command special characters. These characters are 'picked-off' directly from the
|
|
|
|
// serial read data stream and are not passed to the grbl line execution parser. Select characters
|
|
|
|
// that do not and must not exist in the streamed g-code program. ASCII control characters may be
|
2012-01-06 18:10:41 +01:00
|
|
|
// used, if they are available per user setup. Also, extended ASCII codes (>127), which are never in
|
|
|
|
// g-code programs, maybe selected for interface programs.
|
2011-12-09 02:47:48 +01:00
|
|
|
// TODO: Solidify these default characters. Temporary for now.
|
|
|
|
#define CMD_STATUS_REPORT '?'
|
|
|
|
#define CMD_FEED_HOLD '!'
|
|
|
|
#define CMD_CYCLE_START '~'
|
|
|
|
#define CMD_RESET 0x18 // ctrl-x
|
|
|
|
|
2011-09-30 00:25:48 +02:00
|
|
|
// The temporal resolution of the acceleration management subsystem. Higher number give smoother
|
|
|
|
// acceleration but may impact performance.
|
2011-09-24 15:46:41 +02:00
|
|
|
// NOTE: Increasing this parameter will help any resolution related issues, especially with machines
|
|
|
|
// requiring very high accelerations and/or very fast feedrates. In general, this will reduce the
|
|
|
|
// error between how the planner plans the motions and how the stepper program actually performs them.
|
|
|
|
// However, at some point, the resolution can be high enough, where the errors related to numerical
|
|
|
|
// round-off can be great enough to cause problems and/or it's too fast for the Arduino. The correct
|
|
|
|
// value for this parameter is machine dependent, so it's advised to set this only as high as needed.
|
|
|
|
// Approximate successful values can range from 30L to 100L or more.
|
2012-11-09 03:23:47 +01:00
|
|
|
#define ACCELERATION_TICKS_PER_SECOND 50L
|
2011-09-24 15:46:41 +02:00
|
|
|
|
|
|
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
|
|
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
|
|
|
// if unwanted behavior is observed on a user's machine when running at very slow speeds.
|
|
|
|
#define MINIMUM_PLANNER_SPEED 0.0 // (mm/min)
|
|
|
|
|
2011-10-07 07:14:21 +02:00
|
|
|
// Minimum stepper rate. Sets the absolute minimum stepper rate in the stepper program and never runs
|
2011-09-24 15:46:41 +02:00
|
|
|
// slower than this value, except when sleeping. This parameter overrides the minimum planner speed.
|
|
|
|
// This is primarily used to guarantee that the end of a movement is always reached and not stop to
|
|
|
|
// never reach its target. This parameter should always be greater than zero.
|
|
|
|
#define MINIMUM_STEPS_PER_MINUTE 800 // (steps/min) - Integer value only
|
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
// Time delay increments performed during a dwell. The default value is set at 50ms, which provides
|
|
|
|
// a maximum time delay of roughly 55 minutes, more than enough for most any application. Increasing
|
|
|
|
// this delay will increase the maximum dwell time linearly, but also reduces the responsiveness of
|
|
|
|
// run-time command executions, like status reports, since these are performed between each dwell
|
|
|
|
// time step. Also, keep in mind that the Arduino delay timer is not very accurate for long delays.
|
2012-01-16 02:25:12 +01:00
|
|
|
#define DWELL_TIME_STEP 50 // Integer (1-255) (milliseconds)
|
2011-02-05 00:55:37 +01:00
|
|
|
|
2012-11-15 01:36:29 +01:00
|
|
|
// If homing is enabled, homing init lock sets Grbl into an alarm state upon power up. This forces
|
|
|
|
// the user to perform the homing cycle (or override the locks) before doing anything else. This is
|
|
|
|
// mainly a safety feature to remind the user to home, since position is unknown to Grbl.
|
|
|
|
#define HOMING_INIT_LOCK // Comment to disable
|
|
|
|
|
|
|
|
// The homing cycle seek and feed rates will adjust so all axes independently move at the homing
|
|
|
|
// seek and feed rates regardless of how many axes are in motion simultaneously. If disabled, rates
|
|
|
|
// are point-to-point rates, as done in normal operation. For example in an XY diagonal motion, the
|
|
|
|
// diagonal motion moves at the intended rate, but the individual axes move at 70% speed. This option
|
|
|
|
// just moves them all at 100% speed.
|
|
|
|
#define HOMING_RATE_ADJUST // Comment to disable
|
|
|
|
|
2012-10-10 06:01:10 +02:00
|
|
|
// Number of homing cycles performed after when the machine initially jogs to limit switches.
|
|
|
|
// This help in preventing overshoot and should improve repeatability. This value should be one or
|
|
|
|
// greater.
|
|
|
|
#define N_HOMING_CYCLE 2 // Integer (1-128)
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
// Number of blocks Grbl executes upon startup. These blocks are stored in EEPROM, where the size
|
|
|
|
// and addresses are defined in settings.h. With the current settings, up to 5 startup blocks may
|
|
|
|
// be stored and executed in order. These startup blocks would typically be used to set the g-code
|
|
|
|
// parser state depending on user preferences.
|
2012-11-15 01:36:29 +01:00
|
|
|
#define N_STARTUP_LINE 2 // Integer (1-5)
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
|
2012-06-27 05:48:42 +02:00
|
|
|
// ---------------------------------------------------------------------------------------
|
|
|
|
// FOR ADVANCED USERS ONLY:
|
|
|
|
|
2012-11-09 03:23:47 +01:00
|
|
|
// The number of linear motions in the planner buffer to be planned at any give time. The vast
|
|
|
|
// majority of RAM that Grbl uses is based on this buffer size. Only increase if there is extra
|
|
|
|
// available RAM, like when re-compiling for a Teensy or Sanguino. Or decrease if the Arduino
|
|
|
|
// begins to crash due to the lack of available RAM or if the CPU is having trouble keeping
|
|
|
|
// up with planning new incoming motions as they are executed.
|
|
|
|
// #define BLOCK_BUFFER_SIZE 18 // Uncomment to override default in planner.h.
|
|
|
|
|
|
|
|
// Line buffer size from the serial input stream to be executed. Also, governs the size of
|
|
|
|
// each of the startup blocks, as they are each stored as a string of this size. Make sure
|
|
|
|
// to account for the available EEPROM at the defined memory address in settings.h and for
|
|
|
|
// the number of desired startup blocks.
|
|
|
|
// NOTE: 50 characters is not a problem except for extreme cases, but the line buffer size
|
|
|
|
// can be too small and g-code blocks can get truncated. Officially, the g-code standards
|
|
|
|
// support up to 256 characters. In future versions, this default will be increased, when
|
|
|
|
// we know how much extra memory space we can re-invest into this.
|
|
|
|
// #define LINE_BUFFER_SIZE 50 // Uncomment to override default in protocol.h
|
|
|
|
|
|
|
|
// Serial send and receive buffer size. The receive buffer is often used as another streaming
|
|
|
|
// buffer to store incoming blocks to be processed by Grbl when its ready. Most streaming
|
|
|
|
// interfaces will character count and track each block send to each block response. So,
|
|
|
|
// increase the receive buffer if a deeper receive buffer is needed for streaming and avaiable
|
|
|
|
// memory allows. The send buffer primarily handles messages in Grbl. Only increase if large
|
|
|
|
// messages are sent and Grbl begins to stall, waiting to send the rest of the message.
|
|
|
|
// #define RX_BUFFER_SIZE 128 // Uncomment to override defaults in serial.h
|
|
|
|
// #define TX_BUFFER_SIZE 64
|
|
|
|
|
2012-06-27 05:48:42 +02:00
|
|
|
// Toggles XON/XOFF software flow control for serial communications. Not officially supported
|
|
|
|
// due to problems involving the Atmega8U2 USB-to-serial chips on current Arduinos. The firmware
|
|
|
|
// on these chips do not support XON/XOFF flow control characters and the intermediate buffer
|
|
|
|
// in the chips cause latency and overflow problems with standard terminal programs. However,
|
|
|
|
// using specifically-programmed UI's to manage this latency problem has been confirmed to work.
|
|
|
|
// As well as, older FTDI FT232RL-based Arduinos(Duemilanove) are known to work with standard
|
|
|
|
// terminal programs since their firmware correctly manage these XON/XOFF characters. In any
|
|
|
|
// case, please report any successes to grbl administrators!
|
2012-09-22 01:55:02 +02:00
|
|
|
// #define ENABLE_XONXOFF // Default disabled. Uncomment to enable.
|
2012-01-06 18:10:41 +01:00
|
|
|
|
2012-06-27 05:48:42 +02:00
|
|
|
// Creates a delay between the direction pin setting and corresponding step pulse by creating
|
|
|
|
// another interrupt (Timer2 compare) to manage it. The main Grbl interrupt (Timer1 compare)
|
|
|
|
// sets the direction pins, and does not immediately set the stepper pins, as it would in
|
|
|
|
// normal operation. The Timer2 compare fires next to set the stepper pins after the step
|
|
|
|
// pulse delay time, and Timer2 overflow will complete the step pulse, except now delayed
|
|
|
|
// by the step pulse time plus the step pulse delay. (Thanks langwadt for the idea!)
|
|
|
|
// This is an experimental feature that should only be used if your setup requires a longer
|
|
|
|
// delay between direction and step pin settings (some opto coupler based drivers), as it may
|
|
|
|
// adversely effect Grbl's high-end performance (>10kHz). Please notify Grbl administrators
|
|
|
|
// of your successes or difficulties, as we will monitor this and possibly integrate this as a
|
|
|
|
// standard feature for future releases. However, we suggest to first try our direction delay
|
|
|
|
// hack/solution posted in the Wiki involving inverting the stepper pin mask.
|
2012-10-22 00:55:59 +02:00
|
|
|
// NOTE: Uncomment to enable. The recommended delay must be > 3us and the total step pulse
|
|
|
|
// time, which includes the Grbl settings pulse microseconds, must not exceed 127us. Reported
|
|
|
|
// successful values for certain setups have ranged from 10 to 20us.
|
|
|
|
// #define STEP_PULSE_DELAY 10 // Step pulse delay in microseconds. Default disabled.
|
2012-06-27 05:48:42 +02:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------
|
2012-01-06 18:10:41 +01:00
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// TODO: Install compile-time option to send numeric status codes rather than strings.
|
2012-03-10 20:34:09 +01:00
|
|
|
|
2011-12-09 02:47:48 +01:00
|
|
|
#endif
|