forked from Sergii-Kirichok/OrangeCNC-WEB-DOCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhal-converter.html
45 lines (40 loc) · 1.97 KB
/
hal-converter.html
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
41
42
43
44
45
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>allwincnc - HAL files converter - Open-source CNC software for the Allwinner H3/H5/H6 based SBCs</title>
<link rel="stylesheet" href="img/main.css">
<link rel="stylesheet" href="img/code.css">
<link rel="stylesheet" href="img/converter.css">
</head>
<body>
<script type="text/javascript" src="img/menu.js"></script>
<div class="page">
<div class="info-block">
If you have a <strong>HAL</strong> file with <strong>hal_parport</strong> (LPT)
and <strong>stepgen</strong> drivers configuration,
you can convert it to work with <strong>GPIO</strong> (opi_gpio) or
<strong>ARISC</strong> (arisc_*) drivers.
Paste a <strong>HAL</strong> file source into specific field and
click the button of your needs.
</div>
<div class="converter">
<div class="source_box">
<div class="title">HAL file source</div>
<code id="source" class="hal edit" contenteditable="true" spellcheck="false"></code>
</div>
<div class="output_box">
<div class="title">Result</div>
<code id="output" class="hal edit" contenteditable="true" spellcheck="false"></code>
</div>
<div class="control">
<p><button id="conv_btn_2">GO</button></p>
<div class="conv_notes" id="conv_notes_en"></div>
</div>
</div>
</div>
<script type="text/javascript" src="img/footer.js"></script>
</body>
<script type="text/javascript" src="img/main.js"></script>
<script type="text/javascript" src="img/lpt2arisc.js"></script>
</html>