17 lines
290 B
C
17 lines
290 B
C
#ifndef GLOBALS_H_INCLUDED
|
|
#define GLOBALS_H_INCLUDED
|
|
|
|
//in steps
|
|
unsigned long int posX=-1;
|
|
unsigned long int posY=-1;
|
|
unsigned long int posXmm=-1;
|
|
unsigned long int posYmm=-1;
|
|
|
|
//currently selected tool
|
|
int tool=0;
|
|
|
|
//positioning system
|
|
bool relative=false;
|
|
|
|
#endif // GLOBALS_H_INCLUDED
|