1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2024-12-23 00:16:27 +02:00

cameo: call tool compensation from script

- README, lang.l, lang.y: added option "dog" to "tool" command
- lang.y: call tool_comp_paths
This commit is contained in:
Werner Almesberger 2010-12-14 14:20:19 -03:00
parent 2bf4559f3f
commit 86c27dbe7c
3 changed files with 10 additions and 2 deletions

View File

@ -77,4 +77,4 @@ Vertical adjustment:
Tool compensation:
tool
tool [dog]

View File

@ -55,6 +55,8 @@ NUM [0-9]+\.?[0-9]*
<INITIAL>write { BEGIN(FILENAME);
return TOK_WRITE; }
<INITIAL>dog return TOK_DOG;
<INITIAL>mm metric = 1;
<INITIAL>mil metric = 0;

View File

@ -15,6 +15,7 @@
#include <stdlib.h>
#include "path.h"
#include "ops.h"
#include "gnuplot.h"
#include "gerber.h"
@ -115,6 +116,7 @@ static void align(int ref, double x, double y)
%token TOK_ALIGN TOK_ARRAY TOK_CLEAR TOK_RESET TOK_TOOL
%token TOK_TRANSLATE TOK_Z
%token TOK_GERBER TOK_GNUPLOT TOK_WRITE
%token TOK_DOG
%token <num> NUMBER
%token <str> STRING
@ -163,7 +165,11 @@ command:
}
| TOK_TOOL
{
// @@@ process_paths(paths);
tool_comp_paths(paths, 0);
}
| TOK_TOOL TOK_DOG
{
tool_comp_paths(paths, 1);
}
| TOK_TRANSLATE NUMBER NUMBER
{