-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathREADME
41 lines (33 loc) · 908 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
How to compile source code and create packages
Get the project from github.com
Must be installed on your Linux system: gcc-c++, make, cmake, qt4-dev (or qt5-dev, libqt5widgets), libusb-1.0-dev, opengl-dev
For creating makefile and compiling of CNC-Qt:
cmake .
make
or in separate directory:
mkdir build
cd build
cmake ..
make
If You want to create th package (DEB of RPM), must be installed rpm-build or dpkg
and:
for DEB based distributions:
make package-binary-deb
or for RPM
make package-binary-rpm
Program supports now followed G-Codes:
G00
G01
G02 (converting of arcs to short cuts) without R parameter
G03 (converting of arcs to short cuts) without R parameter
G04
G17, G18, G19
G20, G21
G28
G90, G91
G92
M00
M03, M05
M06
M206
For connection with hardware please copy the file udev/rules.d/z90_cncusb.rules into /etc/udev/rules.d/ or /lib/udev/rules.d/ directory and restart the udev daemon.