moved target struct to dda.h
This commit is contained in:
parent
f27e79aaf2
commit
fbeafe3ba7
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include "pinout.h"
|
||||
#include "timer.h"
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "machine.h"
|
||||
#include "dda.h"
|
||||
#include "serial.h"
|
||||
#include "sermsg.h"
|
||||
#include "temp.h"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue