moved target struct to dda.h

This commit is contained in:
Michael Moon 2010-01-20 17:36:22 +11:00
parent f27e79aaf2
commit fbeafe3ba7
4 changed files with 9 additions and 10 deletions

View File

@ -2,7 +2,6 @@
#include <string.h>
#include "pinout.h"
#include "timer.h"
/*

View File

@ -4,9 +4,16 @@
#include <stdint.h>
#include "pinout.h"
#include "gcode.h"
#include "machine.h"
typedef struct {
int32_t X;
int32_t Y;
int32_t Z;
uint32_t E;
uint32_t F;
} TARGET;
typedef struct {
// TARGET currentpoint;
TARGET endpoint;

View File

@ -3,7 +3,6 @@
#include <string.h>
#include "machine.h"
#include "dda.h"
#include "serial.h"
#include "sermsg.h"
#include "temp.h"

View File

@ -3,13 +3,7 @@
#include <stdint.h>
typedef struct {
int32_t X;
int32_t Y;
int32_t Z;
uint32_t E;
uint32_t F;
} TARGET;
#include "dda.h"
typedef struct {
uint16_t sign :1;