Compare commits

..

No commits in common. "8b5bb5a2b081faf1e235d552f1a5dbada08143a9" and "0c6bf263bd41708de8b1242010d685a8c1d9f334" have entirely different histories.

2 changed files with 0 additions and 27 deletions

View File

@ -8,8 +8,6 @@ ftdi_layout_signal SWD_EN -data 0
ftdi_layout_signal nTRST -data 0x0100 -oe 0x0100 ftdi_layout_signal nTRST -data 0x0100 -oe 0x0100
ftdi_layout_signal nSRST -data 0x0200 -oe 0x0200 ftdi_layout_signal nSRST -data 0x0200 -oe 0x0200
set WORKAREASIZE 0
source [find target/stm32l0.cfg] source [find target/stm32l0.cfg]
$_TARGETNAME configure -event reset-end { $_TARGETNAME configure -event reset-end {

View File

@ -1,25 +0,0 @@
import cadquery as cq
centers = [
(-5, 0),
(10, 5),
(10, -5)
]
plunger = (
cq.Workplane("XZ")
.polyline([
(0, 0),
(10, 0),
(9.2, 10),
(0, 10)
])
.close()
.revolve()
.faces(">Z")
.workplane()
.pushPoints(centers)
.hole(3)
)
show_object(plunger)