156 Commits (150b15c31161375c2a3b16c6e405d9ef5243334a)

Author SHA1 Message Date
alexborro d74aabf259 Revert "Change Auto_Bed_Leveling to Auto_Bed_Compensation" 10 years ago
John Davis 4ebeb14026 Update README.md
Changed "Bed Auto Level" (and variants) to "Auto Bed Compensation".
10 years ago
Bo Herrmannsen 91d740e128 Merge pull request #1141 from filipmu/Filament-Sensor
Display filament sensor data on a 20x4 LCD or Graphical LCD
10 years ago
Ivan Krasin d078c7c29f Add Travis CI config to build Marlin firmware. 10 years ago
Filip Mulier 1651ccc0cc Added Filament Sensor to the README
Added some background on the filament sensor to explain it better.
10 years ago
Erik van der Zalm 058e446531 Merge pull request #1037 from filipmu/Filament-Sensor
Support for a filament diameter sensor
10 years ago
filipmu 9bc7aec349 Update README.md
Added the new m-codes to this document.
10 years ago
Erik van der Zalm 018b68a5c4 Merge pull request #976 from cocktailyogi/SCARA_by_Yogi
Implemented SCARA-Maths
10 years ago
Charles Bell 0a8dc0e96b Added documentation to the README.md for the sled Z probe option. CAB 10 years ago
cocktailyogi 512f2a3136 restore Branch from Backup
sorry for that
11 years ago
nothinman aed5ec008a Merge pull request #851 from DanNixon/estop
Implemented M112
11 years ago
Erik van der Zalm cfb98ef682 More coverity fixes 11 years ago
nothinman fe4930212c Merge pull request #871 from whosawhatsis/fwretract
Update Readme descriptions for M200, M207 and M208
11 years ago
whosawhatsis dca9790f42 Update Readme descriptions for M200, M207 and M208 11 years ago
Dan Nixon 272072fa20 Added M112 11 years ago
anfroholic 661e378ce9 Update README.md 11 years ago
Dan Lipsitt 5bf73b86ff Format README.md with subsections
Having actual section headers instead of just bold text makes those parts of the document individually linkable.
11 years ago
Daniel Benamy c886f5cb13 Made instructions more clear.
Not sure what happened to my last commit so this includes that one + reordering the steps.
11 years ago
alexborro 5b8b939a1f Add comments about RAMPS 5V rail for servos. 11 years ago
alexborro 73c82e7ad8 Clarifying M280 command in Bed Auto Leveling section. 11 years ago
Alex Borro 253dfc4bc1 Bed Auto Leveling feature
Check the Readme for instruction how to enable and configure the feature
11 years ago
Erik van der Zalm a447e76fdf Update read me. Added comment about products that have a patent. 11 years ago
Robert F-C d7390e13d9 Support dual x-carriage printers
Dual x-carriage designs offer some substantial improvements for dual
extruder printing.
11 years ago
Erik van der Zalm 461dad6e05 Added : M32 - Select file and start SD print (Can be used when printing from SD card)
Untested
12 years ago
Erik van der Zalm c4a2077951 M109 and M190 now wait when cooling down if R is used instead of S.
M109 S180 waits only when heating.
M109 R180 also waits when cooling.
12 years ago
Erik van der Zalm 7ad12be763 Merge branch 'Marlin_v1' of https://github.com/codexmas/Marlin into codexmas-Marlin_v1
Conflicts:
	Marlin/Configuration.h
	README.md
12 years ago
Scott Lahteine 5dabc95409 Apply all changes from latest Marlin_V1
Diffed and merged, preserving my updates
12 years ago
Gord Christmas 28ada096e2 Adding servo documentation 12 years ago
daid303 6d9dfa96c3 Move the Arduino related stuff out of the Marlin tree, as they are not directly related to Marlin functionality but addons for the Arduino IDE. Also split up the addons for pre 1.0.0 Arduino and post 1.0.0 Arduino. 12 years ago
Robert F-C 08337e01f7 Added change to feature list. 12 years ago
Mark Finn bf7e453d02 Unwanted artifacts from unclean merge of bed-pid tree 12 years ago
Mark Finn 5bfccab650 readme 12 years ago
Ian Jackson 957e966d2d M206: always use homing ("homeing") offsets
Previously the parameters set in M206 would only be used if a G82
command was sent with specific axis home values.  This limits its
usefulness.

Really, we should have a way to adjust the XYZ homing of a machine in
the eeprom.  So as the first stage of this, make M206 affect every
home command.  The values set using M206 are now added to the
configuration variables [XYZ]_HOME_POS.

This is achieved by replacing all uses of [XYZ]_HOME_POS in the code
by a new home_pos[] which includes the adjustment.  We also have to
adjust the uses of [XYZ]_{MIN,MAX}_POS similarly - see below.


To allow axis_is_at_home to be written as a function taking an axis
index rather than a macro taking an axis letter, we provide
constant arrays in program memory containing the values of
[XYZ]_{MIN,MAX,HOME}_POS from the compiled-in configuration.

This is done with some helper macros to deal with the declaration
(XYZ_CONSTS_FROM_CONFIG) and definition of the inline function which
does the program memory access.

We also introduce the overloaded function read_pgm_any, whose
instances are produced with DEFINE_PGM_READ_ANY, which allows the
access functions to automatically produce the correct type.

The type- and pointer-massaging code in the access function boils
down, when compiled, to a simple program memory access.


A question arises: if the M206 offset is set, should this adjustment
to the home position shift or change the possible range of movement
permitted by the software endstops ?

The documentation in Configuration.h describes these limits as:
    // Travel limits after homing
Since this is a file containing physical limits, and actual suggested
values for these configuration parameters appear to include a certain
amount of slop, I've taken the view that these should be regarded as
nominal physical distances from the limit switches, and that the
permissible travel should be unaffected by M206.

So for example with the (rather unrealistic)
  #define X_HOME_DIR -1
  #define X_MIN_POS -20
  #define X_HOME_POS 0
  #define X_MAX_POS 100
no matter the setting of M206 X, the machine would be permitted
to move from 20mm "beyond" the limit switch trigger point in
the negative X direction and 100mm away from the limit switch in
the positive X direction, for a total travel of 120mm.

With M206 X-10 that would be considered to correspond to X coordinates
-30 to +90.  With M206 X+10 that would be considered to correspond to
X coordinates -10 to +110.


fixes #200 (in ErikZalm/Marlin).

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
12 years ago
Erik van der Zalm ea2c19f978 Added CoreXY support (Thanks Ilan Moyer) 13 years ago
Bernhard 88d2a671cc readme corrected 13 years ago
Bernhard e792d62f47 readme 13 years ago
Bernhard Kubicek 108011085b futher docu of M500 13 years ago
Erik van der Zalm ffea8008ca Update readme file 13 years ago
ErikZalm 7f775c142c Update README.md 13 years ago
Erik van der Zalm 27f595a444 Changed version => RC2 13 years ago
Erik van der Zalm 018c567abf Moved SLOWDOWN function. (jetty840)
Included AD595 calibration options. (daid)
13 years ago
Christian Thalhammer 6a3f8cf23f Infos about fuses to use; correct fuses in boards.txt 13 years ago
Christian Thalhammer 234fe8ea67 added infos for this fork 13 years ago
Erik van der Zalm 5113513cb2 RC 1 13 years ago
ErikZalm 0db97b9c7f Update README.md 13 years ago
Bernhard Kubicek 5535e51bf6 Yes, thats the beta. 13 years ago
Bernhard Kubicek eeb4f029db Merge branch 'Marlin_v1' of https://github.com/ErikZalm/Marlin into Marlin_v1 13 years ago
Erik van der Zalm 85c8a87e70 Small changes to README.md 13 years ago
Bernhard Kubicek d8e7e2f72e more readme 13 years ago
Bernhard Kubicek 6dba34ab0e even more format. 13 years ago
Bernhard Kubicek 4687c56f53 format 13 years ago
Bernhard Kubicek 4258841241 format 13 years ago
Bernhard Kubicek 827cd72703 format readme. 13 years ago
Bernhard Kubicek 61e0740bf0 overworked readme 13 years ago
Bernhard Kubicek 40e8081623 changed end of line to windows, which seems to be the majority of developers main platform. 13 years ago
Bernhard Kubicek 00674af3a8 merge from the branch bkubicek/Marlin/zalmmerge 13 years ago