|
Re: prints interrupted June 05, 2011 05:45AM |
Registered: 18 years ago Posts: 1,094 |

|
Re: prints interrupted June 05, 2011 01:38PM |
Registered: 15 years ago Posts: 2,947 |
| FFF Settings Calculator | Gcode post processors | Geometric Object Deposition Tool Blog |
| Tantillus.org | Mini Printable Lathe | How NOT to install a Pololu driver |
|
Re: prints interrupted June 05, 2011 01:51PM |
Registered: 18 years ago Posts: 1,094 |

|
print interrupted - SOLVED - and presentation of my fork June 06, 2011 11:06AM |
Registered: 15 years ago Posts: 27 |


|
Re: prints interrupted June 06, 2011 07:15PM |
Registered: 18 years ago Posts: 1,094 |

|
Re: prints interrupted June 07, 2011 05:56AM |
Registered: 15 years ago Posts: 27 |

|
endstops ignored, STEPS_PER_MM_E June 09, 2011 02:29PM |
Registered: 15 years ago Posts: 21 |
|
Re: endstops ignored, STEPS_PER_MM_E June 09, 2011 08:29PM |
Registered: 18 years ago Posts: 1,094 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 03:52AM |
Registered: 15 years ago Posts: 21 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 05:15AM |
Registered: 18 years ago Posts: 1,094 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 05:27AM |
Registered: 15 years ago Posts: 21 |

diff --git a/timer.c b/timer.c
index f881ab3..e31e370 100644
--- a/timer.c
+++ b/timer.c
@@ -77,7 +77,9 @@ ISR(TIMER1_COMPA_vect) {
// Check if this is a real step, or just a next_step_time "overflow"
if (next_step_time < 65536) {
// step!
- WRITE(SCK, 1);
+ #if defined( DEBUG_LED_PIN )
+ WRITE(DEBUG_LED_PIN, 1);
+ #endif
// disable this interrupt. if we set a new timeout, it will be re-enabled when appropriate
TIMSK1 &= ~MASK(OCIE1A);
@@ -87,7 +89,9 @@ ISR(TIMER1_COMPA_vect) {
queue_step();
// led off
- WRITE(SCK, 0);
+ #if defined( DEBUG_LED_PIN )
+ WRITE(DEBUG_LED_PIN, 0);
+ #endif
// Enable the timer1_compa interrupt, if needed,
// but only do it after disabling global interrupts.
|
Re: Project: Teacup Firmware June 10, 2011 05:35AM |
Registered: 18 years ago Posts: 900 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 05:35AM |
Admin Registered: 19 years ago Posts: 7,883 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 05:41AM |
Registered: 15 years ago Posts: 21 |
|
Re: Project: Teacup Firmware June 10, 2011 05:44AM |
Registered: 15 years ago Posts: 21 |
|
Re: Project: Teacup Firmware June 10, 2011 05:45AM |
Registered: 18 years ago Posts: 1,094 |


|
Re: Project: Teacup Firmware June 10, 2011 05:47AM |
Registered: 18 years ago Posts: 1,094 |
python2.6 extract.py && cat gcode_doc.txt
|
Re: Project: Teacup Firmware June 10, 2011 06:09AM |
Registered: 15 years ago Posts: 21 |
|
Re: endstops ignored, STEPS_PER_MM_E June 10, 2011 07:34AM |
Admin Registered: 19 years ago Posts: 7,883 |
Quote
It seemed to work for y and z, and now it works for x as well. Though I guess it is a good idea to add them when I do my next electonics component order. Do I have to switch off the internal pull-ups, then?
|
Re: Project: Teacup Firmware June 10, 2011 05:16PM |
Registered: 18 years ago Posts: 900 |
|
Re: Project: Teacup Firmware June 10, 2011 06:19PM |
Registered: 15 years ago Posts: 581 |
|
Re: Project: Teacup Firmware June 10, 2011 10:24PM |
Registered: 18 years ago Posts: 1,094 |
|
Re: Project: Teacup Firmware June 11, 2011 01:20AM |
Registered: 16 years ago Posts: 7,616 |
| Generation 7 Electronics | Teacup Firmware | RepRap DIY |
|
Re: Project: Teacup Firmware June 11, 2011 02:13AM |
Admin Registered: 19 years ago Posts: 7,883 |
|
Re: Project: Teacup Firmware June 11, 2011 02:13AM |
Admin Registered: 19 years ago Posts: 7,883 |
|
Re: Project: Teacup Firmware June 11, 2011 06:02AM |
Registered: 15 years ago Posts: 21 |
|
Re: Project: Teacup Firmware June 11, 2011 09:00AM |
Registered: 15 years ago Posts: 11 |
|
Re: endstops ignored, STEPS_PER_MM_E June 11, 2011 09:09AM |
Registered: 18 years ago Posts: 900 |
|
Re: Project: Teacup Firmware June 11, 2011 09:18AM |
Registered: 18 years ago Posts: 1,094 |
|
Re: endstops ignored, STEPS_PER_MM_E June 11, 2011 09:23AM |
Registered: 18 years ago Posts: 1,094 |