1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2025-04-21 12:27:27 +03:00

fisl2012/: first outline of FISL13 talk; abstract and biography

Grmbl. Some junk ended up in this commit as well. Don't dare to disentangle
the mess.
This commit is contained in:
Werner Almesberger
2012-07-22 01:02:40 -03:00
parent 8418a19db1
commit cd80647273
8 changed files with 598 additions and 24 deletions

View File

@@ -17,11 +17,17 @@ GP2RML = $(CAE_TOOLS)/gp2rml/gp2rml
# Z1 = -44
# PIECE_Z = 7.9
X0 = 5
Y0 = 45
Z1 = -44
# run with acrylic (corner at 4, 0)
# #1: 15, 10
# #2: 15, 50
# #3: 80, 10
# PIECE_Z = 5.15
X0 = 80
Y0 = 10
Z1 = -45
PIECE = -5 -5 30 55
PIECE_Z = 5.5
PIECE_Z = 5.15
Z_STEP = 2
CLEARANCE = 2
SPEED_XY = 1
@@ -32,13 +38,21 @@ Z_OFFSET = 0.1
FIN_SPEED_XY = 3
FIN_SPEED_Z = 3
PARAMS = X0=$(X0)mm Y0=$(Y0)mm Z1=$(Z1)mm PIECE_Z=$(PIECE_Z)mm \
# acrylic
# ~0.1 mm / 12 mil tool correction # not needed
#MILL = 120mil
SPEED_XY = 2
SPEED_Z = 2
FIN_SPEED_XY = 5
FIN_SPEED_Z = 5
PARAMS = X0=$(X0)mm Y0=$(Y0)mm Z1=$(Z1)mm MILL=$(MILL) PIECE_Z=$(PIECE_Z)mm \
Z_OFFSET=$(Z_OFFSET)mm
PARTS = top mid bot
PART = top
.PHONY: all plot mill pos cng clean
.PHONY: all plot plot-fin mill pos cng clean
all: $(PART)-mill.rml $(PART)-finish.rml
@@ -73,7 +87,10 @@ $(PART)-finish.rml: $(PART)-finish.gp Makefile
$< >$@ || { rm -f $@; exit 1; }
plot: $(PART)-mill.gp
echo 'splot "$(PART)-mill.gp" with lines' | gnuplot -persist
echo 'splot "$<" with lines' | gnuplot -persist
plot-fin: $(PART)-finish.gp
echo 'splot "$<" with lines' | gnuplot -persist
mill: $(PART)-mill.rml $(PART)-finish.rml
PORT=/dev/ttyUSB0 $(SPOOL) $^
@@ -88,5 +105,9 @@ clean:
rm -f case.gp
rm -f $(PARTS:%=%-piece.gp) $(PARTS:%=%.gp)
rm -f $(PARTS:%=%-area.gp)
rm -f $(PARTS:%=%-mill.gp) $(PARTS:%=%-mill.rml)
rm -f $(PARTS:%=%-finish.gp) $(PARTS:%=%-finish.rml)
rm -f $(PARTS:%=%-mill.gp)
rm -f $(PARTS:%=%-finish.gp)
spotless: clean
rm -f $(PARTS:%=%-mill.rml)
rm -f $(PARTS:%=%-finish.rml)