midopple
c6ebbfdb12
If a line starts with ';', it is ignored but comment_mode is reset.
...
A ';' inside a line ignores just the portion following the ';' character.
The beginning of the line is still interpreted.
--> Tanks to jschleic
Same fix for SD Card, testet and work (midopple)
2012-02-24 22:26:12 +01:00
midopple
9a644d02ce
Version 1.3.07T
...
- Optimize Variable Size (faster Code) --> heater.cpp
- Remove unused Code from Interrupt --> faster ~ 22 us per step
- Replace abs with fabs --> Faster and smaler
2012-02-24 20:23:38 +01:00
midopple
7be03db9d8
Remove unused function "st_set_position"
2012-02-24 20:03:10 +01:00
midopple
421c390596
Add "store_eeprom.cpp" to makefile
2012-02-24 19:54:05 +01:00
midopple
20a99c5925
fix applet/core.a: not found --> Thanks to triffid
2012-02-24 14:01:58 +01:00
midopple
7c5e58a7c4
Changhe PWM Value from INT to unsigned char, is faster for interrupt
2012-02-24 14:00:51 +01:00
Joachim Schleicher
d30c3199f9
compile experimental using the Makefile
...
* add forward declarations in Sprinter.h
* add new files heater.cpp and arc_func.cpp to Makefile
2012-02-24 06:14:47 +08:00
midopple
20daeb57bb
Thermistortable temptable_4
...
correct declaration: const short temptable_4[NUMTEMPS_4][2]
2012-02-23 13:54:02 +01:00
midopple
4b1b0f1d96
The microcontroller can store settings to EEPROM
...
to use the fuction set in configuration.h
#define USE_EEPROM_SETTINGS --> Save and recall Settings aktive
#define PRINT_EEPROM_SETTING --> Print settings to UART
Commands:
M500 - stores paramters in EEPROM
M501 - reads parameters from EEPROM
M502 - reverts to the default
M503 - Print Settings
2012-02-17 22:33:02 +01:00
midopple
ee764635a3
- changed homing function to not conflict with min_software_endstops/max_software_endstops (thanks rGlory)
...
- Corrected distance calculation. (thanks jv4779)
2012-02-15 21:01:43 +01:00
midopple
bb38d646d3
Standardvalue MAX Feed Rate for Z-Axis reduced to 2 mm/s some Printers had problems with 4 mm/s
2012-02-15 20:52:41 +01:00
midopple
cba31acb76
Changed check in arc_func
...
if (millimeters_of_travel == 0.0) => if (millimeters_of_travel < 0.001)
(thanks mooselake)
2012-02-14 18:55:26 +01:00
midopple
7b21a2a055
Add pin definition for the Printrboard Rev B --> Thaks to lwalkera
2012-02-06 08:45:25 +01:00
midopple
e74587a1b4
- Implement Plannercode from Marlin V1 --> big thanks to Erik
...
- Stepper interrupt with Step loops
- Stepperfrequenz 30 Khz
- New Command
* M202 - Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in mm/sec
* M204 - Set default acceleration: S normal moves T filament only moves (M204 S3000 T7000) im mm/sec^2
* M205 - advanced settings: minimum travel speed S=while printing T=travel only, X= maximum xy jerk, Z=maximum Z jerk
- Remove unused Variables
- Check Uart Puffer while circle processing (CMD: G2 / G3)
- Fast Xfer Function --> move Text to Flash
- Option to deaktivate ARC (G2/G3) function (save flash)
- Removed modulo (%) operator, which uses an expensive divide
2012-02-05 19:58:36 +01:00
midopple
0953453911
Without the PID control for Hotend the tempmonitor use the wrong variable
2012-02-02 18:49:35 +01:00
midopple
07a63e7eb1
Option to deaktivate the arc function
2012-02-02 18:48:02 +01:00
midopple
da6a2e0436
Check Uart Puffer while circle processing (CMD: G2 / G3)
2012-02-01 21:21:23 +01:00
midopple
2ffe5ec2b5
Merge commit '132f8c212e4c316559177e532df6b9a6c2205bf2' into experimental
2012-01-29 19:18:06 +01:00
kliment
132f8c212e
Merge pull request #131 from midopple/SprinterV2
...
Lookahead, timer-based stepping, M30 file delete
2012-01-29 09:20:51 -08:00
midopple
cedbef50f5
Add function to check the UART buffer while arc function is working
2012-01-29 18:15:58 +01:00
midopple
16143bc2cb
Update Changelog in Mainfile
2012-01-29 09:14:30 +01:00
midopple
4ea5b0d811
Change Motherboard to 3 (standardsettings)
2012-01-29 08:53:31 +01:00
midopple
89e8e18850
Merge commit 'fa63b839c6cbf261f2655e8783bf4745cc9ca513' into SprinterV2
...
Conflicts:
Sprinter/Configuration.h
Sprinter/Sprinter.pde
2012-01-29 08:49:05 +01:00
midopple
eb2dc852d0
Merge commit 'fa63b839c6cbf261f2655e8783bf4745cc9ca513' into SprinterV2
...
Conflicts:
Sprinter/Configuration.h
2012-01-29 01:27:25 +01:00
midopple
ceae0a472d
Change configuration.h to original settings
2012-01-29 01:01:35 +01:00
midopple
ad7503df25
Change infotext
2012-01-29 00:20:02 +01:00
midopple
76bbfb39ae
New Version Sprinter V2
...
- Look Vorward Funktion -
- Stepper Control with Timer 1
- SOFT PWM for Extruder heating --> Free Timer 1
- G2 / G3 Command for arc real arc
- Baudrate 250 kbaud
- M30 Command delete file on SD Card
- Text moved to flash to free RAM
- M203 Command for Temp debugging
2012-01-29 00:18:21 +01:00
midopple
8d17b09475
Update Sprinter/Configuration.h
2012-01-28 23:55:52 +01:00
kliment
012855c6d1
Merge pull request #129 from jschleic/patch-1
...
Improve Makefile to rebuild on upload
2012-01-27 03:17:43 -08:00
Joachim Schleicher
77c3dd85ec
fix indentation
...
This should be a comment. Instead it is printed together with
the 'upload' target, when idented.
2012-01-27 12:15:38 +01:00
kliment
fa63b839c6
Merge pull request #128 from blddk/experimental
...
Reported wrong temperature in M190
2012-01-22 12:53:50 -08:00
blddk
908bc5314c
Reported wrong temperature while heating up
2012-01-22 21:51:56 +01:00
kliment
4f59622219
Merge pull request #127 from blddk/experimental
...
Stepper enable delay and temperature table
Fix bed temp reading in M190
2012-01-22 10:50:56 -08:00
blddk
d8b6c5f233
Changed temperature table for bed, to the one for the bed, instead of for the heater.
2012-01-22 15:43:51 +01:00
blddk
eb7a192c94
Added option to set a delay after enabling a stepper driver, default turned off to keep current behavior.
2012-01-22 15:28:46 +01:00
blddk
e7fb583df9
Added option to set a delay after enabeling stepper driver, to allow the driver to enable (time needed according to datasheet)
2012-01-22 15:27:27 +01:00
Joachim Schleicher
591b4fa6d8
correct dependencies in Makefile
...
applet/$(TARGET).elf should depend on the cpp file, not on .pde
so that the cpp is rebuilt when pde changes. We drop the target
applet_files to achieve the correct behaviour.
Now 'make upload' does rebuild the hex file as well.
2012-01-20 15:36:05 +01:00
kliment
439f339f74
Merge pull request #125 from gdahlm/experimental
...
Fixes for Gen7 Support #2
2011-12-10 12:47:22 -08:00
kliment
a352585065
Merge pull request #126 from ERoth3/patch-1
...
Updated readme with a warning about Arduino V1.0 incompatibility.
2011-12-10 12:45:33 -08:00
ERoth3
0f55d49705
Updated readme with a warning about Arduino V1.0 incompatibility.
2011-12-10 15:43:02 -05:00
Greg Dahlman
49c5c65dcf
Fix ifdef with missing # in Sprinter.pde and add 644 non P to the Gen 7 board in pins.h
2011-12-06 12:30:56 -08:00
Greg Dahlman
2c00d1580f
Fixing issues in pins.h and fastio.h, I created them not understanding it was using arduino pin numbers
...
I also put in a note that Gen 7 only works at 16 MHZ due to timing issues with WProgram.h and wiring.h
2011-12-05 20:34:02 -08:00
Greg Dahlman
09d5247ba2
Merge remote-tracking branch 'upstream/experimental'
...
Conflicts:
Sprinter/pins.h
2011-12-05 20:29:31 -08:00
kliment
2550e6c566
Merge pull request #123 from FrozenFire/master
...
Allow running a specifically-named file from SD on startup if found.
2011-12-05 01:48:36 -08:00
Nathan Zadoks
f201ccb55b
Added an option to make init.g on SD run on boot.
2011-12-04 13:03:20 +01:00
Kliment Yanev
b331d48101
Add gen7 to list of boards in configuration
...
Allow ATmega644 (non-P version) for Gen7
2011-11-28 16:23:52 +01:00
Kliment Yanev
9090c6a460
Merge branch 'master' into experimental
2011-11-28 16:22:00 +01:00
Kliment Yanev
67199da509
Revert "Merge pull request #121 from Traumflug/master"
...
This reverts commit 11d3281a09 , reversing
changes made to f8c17d3b46 .
2011-11-28 16:10:48 +01:00
kliment
11d3281a09
Merge pull request #121 from Traumflug/master
...
Allow ATmega644 for Gen7
2011-11-28 07:05:20 -08:00
Markus Hitter
3bbfe733e7
pins.h: allow an ATmega644 (without P).
2011-11-28 16:02:58 +01:00