Merge branch 'master' of github.com:triffid/FiveD_on_Arduino

This commit is contained in:
Michael Moon 2010-09-10 11:33:05 +10:00
commit 2be7485409
9 changed files with 201 additions and 106 deletions

View File

@ -39,12 +39,13 @@ OBJCOPY = $(ARCH)objcopy
DEFS = -DF_CPU=$(F_CPU) DEFS = -DF_CPU=$(F_CPU)
# DEFS += "-DDEBUG=1" # DEFS += "-DDEBUG=1"
OPTIMIZE = -Os -ffunction-sections -finline-functions-called-once -DDEBUG OPTIMIZE = -Os -ffunction-sections -finline-functions-called-once
# OPTIMIZE = -O0 # OPTIMIZE = -O0
CFLAGS = -g -Wall -Wstrict-prototypes $(OPTIMIZE) -mmcu=$(MCU_TARGET) $(DEFS) -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -save-temps CFLAGS = -g -Wall -Wstrict-prototypes $(OPTIMIZE) -mmcu=$(MCU_TARGET) $(DEFS) -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -save-temps
LDFLAGS = -Wl,--as-needed -Wl,--gc-sections LDFLAGS = -Wl,--as-needed -Wl,--gc-sections
AVRDUDE = avrdude AVRDUDE = avrdude
AVRDUDECONF = /etc/avrdude.conf
############################################################################## ##############################################################################
# # # #
@ -68,7 +69,7 @@ program: $(PROGRAM).hex
stty $(PROGBAUD) raw ignbrk hup < $(PROGPORT) stty $(PROGBAUD) raw ignbrk hup < $(PROGPORT)
@sleep 0.1 @sleep 0.1
@stty $(PROGBAUD) raw ignbrk hup < $(PROGPORT) @stty $(PROGBAUD) raw ignbrk hup < $(PROGPORT)
$(AVRDUDE) -cstk500v1 -b$(PROGBAUD) -p$(MCU_TARGET) -P$(PROGPORT) -C/etc/avrdude.conf -U flash:w:$^ $(AVRDUDE) -cstk500v1 -b$(PROGBAUD) -p$(MCU_TARGET) -P$(PROGPORT) -C$(AVRDUDECONF) -U flash:w:$^
stty 115200 raw ignbrk -hup -echo ixon < $(PROGPORT) stty 115200 raw ignbrk -hup -echo ixon < $(PROGPORT)
clean: clean:

109
dda.c
View File

@ -119,8 +119,7 @@ void dda_create(DDA *dda, TARGET *target) {
uint32_t distance; uint32_t distance;
// initialise DDA to a known state // initialise DDA to a known state
dda->live = 0; dda->allflags = 0;
dda->waitfor_temp = 0;
if (debug_flags & DEBUG_DDA) if (debug_flags & DEBUG_DDA)
serial_writestr_P(PSTR("\n{DDA_CREATE: [")); serial_writestr_P(PSTR("\n{DDA_CREATE: ["));
@ -210,6 +209,7 @@ void dda_create(DDA *dda, TARGET *target) {
// distance * 2400 .. * F_CPU / 40000 so we can move a distance of up to 1800mm without overflowing // distance * 2400 .. * F_CPU / 40000 so we can move a distance of up to 1800mm without overflowing
uint32_t move_duration = ((distance * 2400) / dda->total_steps) * (F_CPU / 40000); uint32_t move_duration = ((distance * 2400) / dda->total_steps) * (F_CPU / 40000);
#ifdef ACCELERATION_REPRAP
// c is initial step time in IOclk ticks // c is initial step time in IOclk ticks
dda->c = (move_duration / startpoint.F) << 8; dda->c = (move_duration / startpoint.F) << 8;
@ -270,6 +270,19 @@ void dda_create(DDA *dda, TARGET *target) {
} }
else else
dda->accel = 0; dda->accel = 0;
#else // #elifdef isn't valid for gcc
#ifdef ACCELERATION_RAMPING
dda->ramp_steps = dda->total_steps / 2;
dda->step_no = 0;
// c is initial step time in IOclk ticks
dda->c = ACCELERATION_STEEPNESS << 8;
dda->c_min = (move_duration / target->F) << 8;
dda->n = 1;
dda->ramp_state = RAMP_UP;
#else
dda->c = (move_duration / target->F) << 8;
#endif
#endif
} }
if (debug_flags & DEBUG_DDA) if (debug_flags & DEBUG_DDA)
@ -315,56 +328,20 @@ void dda_start(DDA *dda) {
setTimer(dda->c >> 8); setTimer(dda->c >> 8);
} }
/*
CAN STEP
*/
uint8_t can_step(uint8_t min, uint8_t max, int32_t current, int32_t target, uint8_t dir) {
if (dir) {
// forwards/positive
if (max)
return 0;
if (current >= target)
return 0;
}
else {
// backwards/negative
if (min)
return 0;
if (target >= current)
return 0;
}
return 255;
}
/* /*
STEP STEP
*/ */
void dda_step(DDA *dda) { void dda_step(DDA *dda) {
// called from interrupt context! keep it as simple as possible // called from interrupt context! keep it as simple as possible
uint8_t step_option = 0; uint8_t did_step = 0;
#define X_CAN_STEP 1
#define Y_CAN_STEP 2
#define Z_CAN_STEP 4
#define E_CAN_STEP 8
#define DID_STEP 128
// step_option |= can_step(x_min(), x_max(), current_position.X, dda->endpoint.X, dda->x_direction) & X_CAN_STEP; if (current_position.X != dda->endpoint.X /* &&
step_option |= can_step(0 , 0 , current_position.X, dda->endpoint.X, dda->x_direction) & X_CAN_STEP; x_max() != dda->x_direction && x_min() == dda->x_direction */) {
// step_option |= can_step(y_min(), y_max(), current_position.Y, dda->endpoint.Y, dda->y_direction) & Y_CAN_STEP;
step_option |= can_step(0 , 0 , current_position.Y, dda->endpoint.Y, dda->y_direction) & Y_CAN_STEP;
// step_option |= can_step(z_min(), z_max(), current_position.Z, dda->endpoint.Z, dda->z_direction) & Z_CAN_STEP;
step_option |= can_step(0 , 0 , current_position.Z, dda->endpoint.Z, dda->z_direction) & Z_CAN_STEP;
step_option |= can_step(0 , 0 , current_position.E, dda->endpoint.E, dda->e_direction) & E_CAN_STEP;
// step_option |= can_step(0 , 0 , current_position.F, dda->endpoint.F, dda->f_direction) & F_CAN_STEP;
if (step_option & X_CAN_STEP) {
dda->x_counter -= dda->x_delta; dda->x_counter -= dda->x_delta;
if (dda->x_counter < 0) { if (dda->x_counter < 0) {
x_step(); x_step();
step_option |= DID_STEP; did_step = 1;
if (dda->x_direction) if (dda->x_direction)
current_position.X++; current_position.X++;
else else
@ -374,11 +351,12 @@ void dda_step(DDA *dda) {
} }
} }
if (step_option & Y_CAN_STEP) { if (current_position.Y != dda->endpoint.Y /* &&
y_max() != dda->y_direction && y_min() == dda->y_direction */) {
dda->y_counter -= dda->y_delta; dda->y_counter -= dda->y_delta;
if (dda->y_counter < 0) { if (dda->y_counter < 0) {
y_step(); y_step();
step_option |= DID_STEP; did_step = 1;
if (dda->y_direction) if (dda->y_direction)
current_position.Y++; current_position.Y++;
else else
@ -388,11 +366,12 @@ void dda_step(DDA *dda) {
} }
} }
if (step_option & Z_CAN_STEP) { if (current_position.Z != dda->endpoint.Z /* &&
z_max() != dda->z_direction && z_min() == dda->z_direction */) {
dda->z_counter -= dda->z_delta; dda->z_counter -= dda->z_delta;
if (dda->z_counter < 0) { if (dda->z_counter < 0) {
z_step(); z_step();
step_option |= DID_STEP; did_step = 1;
if (dda->z_direction) if (dda->z_direction)
current_position.Z++; current_position.Z++;
else else
@ -402,11 +381,11 @@ void dda_step(DDA *dda) {
} }
} }
if (step_option & E_CAN_STEP) { if (current_position.E != dda->endpoint.E) {
dda->e_counter -= dda->e_delta; dda->e_counter -= dda->e_delta;
if (dda->e_counter < 0) { if (dda->e_counter < 0) {
e_step(); e_step();
step_option |= DID_STEP; did_step = 1;
if (dda->e_direction) if (dda->e_direction)
current_position.E++; current_position.E++;
else else
@ -424,6 +403,7 @@ void dda_step(DDA *dda) {
sei(); sei();
#endif #endif
#ifdef ACCELERATION_REPRAP
// linear acceleration magic, courtesy of http://www.embedded.com/columns/technicalinsights/56800129?printable=true // linear acceleration magic, courtesy of http://www.embedded.com/columns/technicalinsights/56800129?printable=true
if (dda->accel) { if (dda->accel) {
if ( if (
@ -440,8 +420,39 @@ void dda_step(DDA *dda) {
} }
// else we are already at target speed // else we are already at target speed
} }
#endif
#ifdef ACCELERATION_RAMPING
// - algorithm courtesy of http://www.embedded.com/columns/technicalinsights/56800129?printable=true
// - for simplicity, taking even/uneven number of steps into account dropped
// - number of steps moved is always accurate, speed might be one step off
switch (dda->ramp_state) {
case RAMP_UP:
case RAMP_MAX:
if (dda->step_no >= dda->ramp_steps) {
// RAMP_UP: time to decelerate before reaching maximum speed
// RAMP_MAX: time to decelerate
dda->ramp_state = RAMP_DOWN;
dda->n = -((int32_t)2) - dda->n;
}
if (dda->ramp_state == RAMP_MAX)
break;
case RAMP_DOWN:
dda->n += 4;
// be careful of signedness!
dda->c = (int32_t)dda->c - ((int32_t)(dda->c * 2) / dda->n);
if (dda->c <= dda->c_min) {
// maximum speed reached
dda->c = dda->c_min;
dda->ramp_state = RAMP_MAX;
dda->ramp_steps = dda->total_steps - dda->step_no;
}
setTimer(dda->c >> 8);
break;
}
dda->step_no++;
#endif
if (step_option) { if (did_step) {
// we stepped, reset timeout // we stepped, reset timeout
steptimeout = 0; steptimeout = 0;

52
dda.h
View File

@ -6,6 +6,16 @@
#include "pinout.h" #include "pinout.h"
#include "machine.h" #include "machine.h"
/*
enums
*/
// wether we accelerate, run at full speed, break down, etc.
typedef enum {
RAMP_UP,
RAMP_MAX,
RAMP_DOWN
} ramp_state_t;
/* /*
types types
*/ */
@ -24,19 +34,26 @@ typedef struct {
// this is where we should finish // this is where we should finish
TARGET endpoint; TARGET endpoint;
// status fields union {
uint8_t nullmove :1; struct {
uint8_t live :1; // status fields
uint8_t accel :1; uint8_t nullmove :1;
uint8_t live :1;
#ifdef ACCELERATION_REPRAP
uint8_t accel :1;
#endif
// wait for temperature to stabilise flag // wait for temperature to stabilise flag
uint8_t waitfor_temp :1; uint8_t waitfor_temp :1;
// directions // directions
uint8_t x_direction :1; uint8_t x_direction :1;
uint8_t y_direction :1; uint8_t y_direction :1;
uint8_t z_direction :1; uint8_t z_direction :1;
uint8_t e_direction :1; uint8_t e_direction :1;
};
uint8_t allflags; // used for clearing all flags
};
// distances // distances
uint32_t x_delta; uint32_t x_delta;
@ -55,8 +72,21 @@ typedef struct {
// linear acceleration variables: c and end_c are 24.8 fixed point timer values, n is the tracking variable // linear acceleration variables: c and end_c are 24.8 fixed point timer values, n is the tracking variable
uint32_t c; uint32_t c;
#ifdef ACCELERATION_REPRAP
uint32_t end_c; uint32_t end_c;
int32_t n; int32_t n;
#endif
#ifdef ACCELERATION_RAMPING
// start of down-ramp, intitalized with total_steps / 2
uint32_t ramp_steps;
// counts actual steps done
uint32_t step_no;
// 24.8 fixed point timer value, maximum speed
uint32_t c_min;
// tracking variable
int32_t n;
ramp_state_t ramp_state;
#endif
} DDA; } DDA;
/* /*

View File

@ -3,6 +3,7 @@
#include <string.h> #include <string.h>
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include "machine.h" // for XONXOFF
#include "timer.h" #include "timer.h"
#include "serial.h" #include "serial.h"
#include "sermsg.h" #include "sermsg.h"
@ -20,6 +21,10 @@ uint8_t queue_empty() {
return ((mb_tail == mb_head) && (movebuffer[mb_tail].live == 0))?255:0; return ((mb_tail == mb_head) && (movebuffer[mb_tail].live == 0))?255:0;
} }
// -------------------------------------------------------
// This is the one function called by the timer interrupt.
// It calls a few other functions, though.
// -------------------------------------------------------
void queue_step() { void queue_step() {
disableTimerInterrupt(); disableTimerInterrupt();
@ -70,9 +75,10 @@ void enqueue(TARGET *t) {
mb_head = h; mb_head = h;
#ifdef XONXOFF #ifdef XONXOFF
// if queue is full, stop transmition // If the queue has only two slots remaining, stop transmission. More
if (queue_full()) // characters might come in until the stop takes effect.
xoff(); if (((mb_tail - mb_head - 1) & (MOVEBUFFER_SIZE - 1)) < (MOVEBUFFER_SIZE - 2))
xoff();
#endif #endif
// fire up in case we're not running yet // fire up in case we're not running yet
@ -104,9 +110,8 @@ void enqueue_temp_wait() {
mb_head = h; mb_head = h;
#ifdef XONXOFF #ifdef XONXOFF
// if queue is full, stop transmition if (((mb_tail - mb_head - 1) & (MOVEBUFFER_SIZE - 1)) < (MOVEBUFFER_SIZE - 2))
if (queue_full()) xoff();
xoff();
#endif #endif
// fire up in case we're not running yet // fire up in case we're not running yet
@ -126,8 +131,8 @@ void next_move() {
} }
#ifdef XONXOFF #ifdef XONXOFF
// restart transmission // restart transmission
xon(); xon();
#endif #endif
} }

23
gcode.c
View File

@ -210,7 +210,7 @@ void scan_char(uint8_t c) {
} }
// skip comments // skip comments
if (next_target.seen_comment == 0) { if (next_target.seen_semi_comment == 0 && next_target.seen_parens_comment == 0) {
// new field? // new field?
if ((c >= 'A' && c <= 'Z') || c == '*') { if ((c >= 'A' && c <= 'Z') || c == '*') {
last_field = c; last_field = c;
@ -262,9 +262,12 @@ void scan_char(uint8_t c) {
// comments // comments
case ';': case ';':
next_target.seen_comment = 1; next_target.seen_semi_comment = 1;
// option_bitfield |= OPTION_COMMENT; // option_bitfield |= OPTION_COMMENT;
break; break;
case '(':
next_target.seen_parens_comment = 1;
break;
// now for some numeracy // now for some numeracy
case '-': case '-':
@ -288,7 +291,9 @@ void scan_char(uint8_t c) {
} }
// everything else is ignored // everything else is ignored
} }
} } else if ( next_target.seen_parens_comment == 1 && c == ')')
next_target.seen_parens_comment = 0; // recognize stuff after a (comment)
#ifndef ASTERISK_IN_CHECKSUM_INCLUDED #ifndef ASTERISK_IN_CHECKSUM_INCLUDED
if (next_target.seen_checksum == 0) if (next_target.seen_checksum == 0)
@ -348,8 +353,8 @@ void scan_char(uint8_t c) {
next_target.seen_E = next_target.seen_F = next_target.seen_G = \ next_target.seen_E = next_target.seen_F = next_target.seen_G = \
next_target.seen_S = next_target.seen_P = next_target.seen_N = \ next_target.seen_S = next_target.seen_P = next_target.seen_N = \
next_target.seen_M = next_target.seen_checksum = \ next_target.seen_M = next_target.seen_checksum = \
next_target.seen_comment = next_target.checksum_read = \ next_target.seen_semi_comment = next_target.seen_parens_comment = \
next_target.checksum_calculated = 0; next_target.checksum_read = next_target.checksum_calculated = 0;
last_field = 0; last_field = 0;
read_digit.sign = read_digit.mantissa = read_digit.exponent = 0; read_digit.sign = read_digit.mantissa = read_digit.exponent = 0;
} }
@ -409,7 +414,7 @@ void process_gcode_command(GCODE_COMMAND *gcmd) {
// G4 - Dwell // G4 - Dwell
case 4: case 4:
#ifdef XONXOFF #ifdef XONXOFF
xoff(); xoff();
#endif #endif
// wait for all moves to complete // wait for all moves to complete
for (;queue_empty() == 0;) for (;queue_empty() == 0;)
@ -417,7 +422,7 @@ void process_gcode_command(GCODE_COMMAND *gcmd) {
// delay // delay
delay_ms(gcmd->P); delay_ms(gcmd->P);
#ifdef XONXOFF #ifdef XONXOFF
xon(); xon();
#endif #endif
break; break;
@ -688,7 +693,11 @@ void process_gcode_command(GCODE_COMMAND *gcmd) {
serial_writestr_P(PSTR(",F:")); serial_writestr_P(PSTR(",F:"));
serwrite_int32(movebuffer[mb_tail].endpoint.F); serwrite_int32(movebuffer[mb_tail].endpoint.F);
serial_writestr_P(PSTR(",c:")); serial_writestr_P(PSTR(",c:"));
#ifdef ACCELERATION_REPRAP
serwrite_uint32(movebuffer[mb_tail].end_c); serwrite_uint32(movebuffer[mb_tail].end_c);
#else
serwrite_uint32(movebuffer[mb_tail].c);
#endif
serial_writestr_P(PSTR("}\n")); serial_writestr_P(PSTR("}\n"));
print_queue(); print_queue();

View File

@ -36,8 +36,9 @@ typedef struct {
uint8_t seen_P :1; uint8_t seen_P :1;
uint8_t seen_N :1; uint8_t seen_N :1;
uint8_t seen_checksum :1; uint8_t seen_checksum :1;
uint8_t seen_comment :1; uint8_t seen_semi_comment :1;
uint8_t seen_parens_comment :1;
uint8_t option_relative :1; uint8_t option_relative :1;
uint8_t option_inches :1; uint8_t option_inches :1;

View File

@ -36,6 +36,27 @@
#define TEMP_HYSTERESIS 20 #define TEMP_HYSTERESIS 20
#define TEMP_RESIDENCY_TIME 60 #define TEMP_RESIDENCY_TIME 60
// acceleration, reprap style. Each movement starts at the speed of
// the previous command and accelerates or decelerates linearly
// to reach target speed at the end of the movement.
#define ACCELERATION_REPRAP
// acceleration and deceleration ramping. Each movement starts at
// (almost) no speed, linearly accelerates to target speed and decelerates
// just in time to smoothly stop at the target.
// alternative to ACCELERATION_REPRAP
//#define ACCELERATION_RAMPING
// how fast to accelerate when using ACCELERATION_RAMPING
// smaller values give quicker acceleration
// valid range = 1 to 8,000,000; 500,000 is a good starting point
#define ACCELERATION_STEEPNESS 500000
#ifdef ACCELERATION_REPRAP
#ifdef ACCELERATION_RAMPING
#error Cant use ACCELERATION_REPRAP and ACCELERATION_RAMPING together.
#endif
#endif
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
// you shouldn't need to edit something below this line // you shouldn't need to edit something below this line
@ -60,7 +81,9 @@
// this should help immensely with dropped serial characters, but may also make debugging infuriating due to the complexities arising from nested interrupts // this should help immensely with dropped serial characters, but may also make debugging infuriating due to the complexities arising from nested interrupts
#define STEP_INTERRUPT_INTERRUPTIBLE 1 #define STEP_INTERRUPT_INTERRUPTIBLE 1
// Xon/Xoff flow control. Should be redundant // Xon/Xoff flow control. Redundant when using RepRap Host for sending GCode,
// but mandatory when sending GCode files with a plain terminal emulator,
// like GtkTerm (Linux), CoolTerm (Mac) or HyperTerminal (Windows).
// #define XONXOFF // #define XONXOFF
/* /*

View File

@ -45,11 +45,13 @@ volatile uint8_t txbuf[BUFSIZE];
data = buf[tail++]; tail &= (BUFSIZE - 1); data = buf[tail++]; tail &= (BUFSIZE - 1);
*/ */
volatile uint8_t flowflags = 0; #ifdef XONXOFF
#define FLOWFLAG_SEND_XOFF 1 #define FLOWFLAG_SEND_XON 1
#define FLOWFLAG_SEND_XON 2 #define FLOWFLAG_SEND_XOFF 2
#define FLOWFLAG_SENT_XOFF 4 #define FLOWFLAG_STATE_XON 4
#define FLOWFLAG_SENT_XON 8 // initially, send an XON
volatile uint8_t flowflags = FLOWFLAG_SEND_XON;
#endif
void serial_init() void serial_init()
{ {
@ -82,14 +84,14 @@ ISR(USART_RX_vect)
ISR(USART_UDRE_vect) ISR(USART_UDRE_vect)
{ {
#if XONXOFF #ifdef XONXOFF
if (flowflags & FLOWFLAG_SEND_XOFF) { if (flowflags & FLOWFLAG_SEND_XON) {
UDR0 = ASCII_XOFF;
flowflags = (flowflags & ~FLOWFLAG_SEND_XOFF) | FLOWFLAG_SENT_XOFF;
}
else if (flowflags & FLOWFLAG_SEND_XON) {
UDR0 = ASCII_XON; UDR0 = ASCII_XON;
flowflags = (flowflags & ~FLOWFLAG_SEND_XON) | FLOWFLAG_SENT_XON; flowflags = FLOWFLAG_STATE_XON;
}
else if (flowflags & FLOWFLAG_SEND_XOFF) {
UDR0 = ASCII_XOFF;
flowflags = 0;
} }
else else
#endif #endif
@ -189,16 +191,27 @@ void serial_writestr_P(PGM_P data)
} }
#ifdef XONXOFF #ifdef XONXOFF
void xon() { void xon() {
if (flowflags & FLOWFLAG_SENT_XOFF) // disable TX interrupt
flowflags = FLOWFLAG_SEND_XON; UCSR0B &= ~MASK(UDRIE0);
// enable TX interrupt so we can send this character
UCSR0B |= MASK(UDRIE0);
}
void xoff() { if ((flowflags & FLOWFLAG_STATE_XON) == 0)
flowflags = FLOWFLAG_SEND_XOFF; flowflags = FLOWFLAG_SEND_XON;
// enable TX interrupt so we can send this character else
UCSR0B |= MASK(UDRIE0); flowflags = FLOWFLAG_STATE_XON; // purge a possible FLOWFLAG_SEND_XOFF
}
// enable TX interrupt so we can send this character
UCSR0B |= MASK(UDRIE0);
}
void xoff() {
UCSR0B &= ~MASK(UDRIE0);
if (flowflags & FLOWFLAG_STATE_XON)
flowflags = FLOWFLAG_SEND_XOFF | FLOWFLAG_STATE_XON;
else
flowflags = 0;
UCSR0B |= MASK(UDRIE0);
}
#endif #endif

View File

@ -5,6 +5,8 @@
#include <avr/io.h> #include <avr/io.h>
#include <avr/pgmspace.h> #include <avr/pgmspace.h>
#include "machine.h" // for XONXOFF
// initialise serial subsystem // initialise serial subsystem
void serial_init(void); void serial_init(void);
@ -28,9 +30,9 @@ void serial_writeblock_P(PGM_P data, int datalen);
void serial_writestr_P(PGM_P data); void serial_writestr_P(PGM_P data);
#ifdef XONXOFF #ifdef XONXOFF
// XON/XOFF flow control // XON/XOFF flow control
void xoff(void); void xon(void);
void xon(void); void xoff(void);
#endif #endif
#endif /* _SERIAL_H */ #endif /* _SERIAL_H */