1
0
mirror of git://projects.qi-hardware.com/f32xbase.git synced 2024-06-29 00:00:44 +03:00

c2usb/cam/pcb.pl: fix bogus tool parameters

Fixing it lest if gets copied and lives on elsewhere. Note that it may
still be necessary to add a small negative correction (in the order of
-0.1 mm) to compensate for deflection of the workpiece.

- c2usb/cam/pcb.pl ($d): there are 25.4 mm in an inch, not 2.54
- c2usb/cam/pcb.pl ($d): the endmill used has a diameter of 35 mil, not
  8 mil
- c2usb/cam/pcb.p ($r): don't apply correction for imagined mechanical
  issues (now what we're working with correct values)
This commit is contained in:
Werner Almesberger 2010-10-22 04:12:36 -03:00
parent df9fb5c338
commit b1d1fcc4ba

View File

@ -1,7 +1,7 @@
#!/usr/bin/perl
$d = 2.54/1000*12;
$r = $d/2+0.25;
$d = 25.4/1000*35;
$r = $d/2;
sub orig