CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Electronics > PCB milling


PCB milling Discuss PCB milling here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 06-05-2009, 06:34 AM
 
Join Date: Apr 2009
Location: Denmark
Posts: 42
bsdphk is on a distinguished road
Cheap & simple height-probing

Those of you trying to produce fine features by isolation routing may find this interesting:

http://phk.freebsd.dk/CncPcb/

Enjoy,

Poul-Henning
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 06-08-2009, 10:47 PM
 
Join Date: Apr 2007
Location: USA
Posts: 1,137
harryn is on a distinguished road

That is a neat idea. Actually, it is quite useful for not only PCBs, but a whole lot of areas such as engraving. The board traces are cut quite sharp compared to some I have seen.

Thank you for sharing that idea, and welcome to cnczone.

HarryN
Tweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 06-20-2009, 11:39 AM
cwiliam's Avatar  
Join Date: Jun 2004
Location: United States
Posts: 30
cwiliam is on a distinguished road

really interesting hope to see more
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 07-26-2009, 01:54 PM
 
Join Date: Oct 2005
Location: UK
Posts: 38
dhookings is on a distinguished road

Well I think that is quite brilliant. In conception, and, from the picture on your web site, in practice. I gave up on isolation routing because I could not guarantee producing smd pads at 32thou centres. You have there 4thou lands at 20thou centres.
Unfortunately I use different control software, and my brain clouds over when I see C code.
Mach3 uses G31 to probe, and stores the coordinates in #2000 to #2005. I should be able to work out where to substitute those and hopefully the rest of the syntax would parse ok.
I'm going to give it a go, anyway.
Any pointers would be appreciated.

Dave
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 10-16-2009, 12:19 PM
 
Join Date: Jun 2008
Location: USA
Posts: 1
sounddog is on a distinguished road

this is my first posting so sorry if there are any errors...

Reply to DHookings,
I'm in the same boat, C-Code makes my head hurt..

I currently make pc boards on my Mach3 driven mill with much success, but recently have discovered board thickness variations (insert grumpy sound here!).

A floating head spindle could work, but my Wolfgang spindle isn't threaded to accommodate the foot that I have (long story, could send pictures to clarify).

Any development ideas?
Anything I can do to help??

Cheers!
Mark
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 10-21-2009, 03:32 PM
 
Join Date: Aug 2009
Location: Portugal
Posts: 62
casainho is on a distinguished road

Originally Posted by bsdphk View Post
Those of you trying to produce fine features by isolation routing may find this interesting:

http://phk.freebsd.dk/CncPcb/
Good work! and thanks for sharing ;-)
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 11-18-2009, 02:29 AM
 
Join Date: Mar 2003
Location: USA
Posts: 1
alenz is on a distinguished road

Has there been any further work on this? This could be a VERY valuable tool. Too valuable to just let the development go dormant. I would love to help, but unfortunately it is beyond my current capability.
al
Tweet this Post!Share on Facebook
Reply With Quote

  #8   Ban this user!
Old 11-18-2009, 12:08 PM
BobWarfield's Avatar  
Join Date: May 2005
Location: USA
Posts: 2,340
BobWarfield is on a distinguished road

Very clever!

Best,

BW
__________________
Try G-Wizard Machinist's Calculator for free:
http://www.cnccookbook.com/CCGWizard.html
Tweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 11-18-2009, 12:29 PM
 
Join Date: Apr 2009
Location: Denmark
Posts: 42
bsdphk is on a distinguished road

Originally Posted by alenz View Post
Has there been any further work on this?
I have made a couple of PCBs using this method, you can see one of them here:

http://ing.dk/uploads/society/content/201.png

The method has a lot of potential, but there are some ugly corners that need to be cleaned up, before it is ready for "prime time" use by people who cannot tweak C-code at will.

Right now, it works well enough for me, that I don't spend a lot of time on it, and since I only make a few PCB's a month, that is unlikely to change fast.

If somebody wants to adopt the project, I'll happily hand it over, along with a long email with random notes and observations...

Poul-Henning
Tweet this Post!Share on Facebook
Reply With Quote

  #10   Ban this user!
Old 12-27-2009, 04:16 PM
 
Join Date: Dec 2009
Location: USA
Posts: 3
prosys is on a distinguished road
Compiling the code

All,

Can anyone give me any clues as to how to compile and get the code running (Ubuntu 8.04), I get an error pretty early in teh compile that I can;t get past...
make plt2g
cc -g -O0 plt2g.c -o plt2g
plt2g.c: In function ‘stitch’:
plt2g.c:1038: error: ‘list’ undeclared (first use in this function)
plt2g.c:1038: error: (Each undeclared identifier is reported only once
plt2g.c:1038: error: for each function it appears in.)
plt2g.c:1038: error: expected ‘;’ before ‘{’ token
make: *** [plt2g] Error 1
peter@peter-mini-CNC:~/Code$

From looking at the code the probelm appears to be either an include thats gone wrong (though there are not other errors shown, or the code is out os synce` with teh header from the web page that I downloaded...

Anyone happen to have a pre-compiled binary for the EMC2 release of Ubuntu 8.04 ?
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 12-27-2009, 05:36 PM
 
Join Date: Aug 2009
Location: USA
Posts: 27
charliex is on a distinguished road

in plt2g.c change

Code:
#include <sys/queue.h>
to 
#include "queue.h"
make sure you downloaded the queue.h from the website

you may or may not have to deal with srandomdev(), which srandom(time(NULL)) should take care of.
Tweet this Post!Share on Facebook
Reply With Quote

  #12   Ban this user!
Old 12-27-2009, 07:18 PM
 
Join Date: Dec 2009
Location: USA
Posts: 3
prosys is on a distinguished road

Thank you, that got me further (and yes I did need to put the srandomdev fix in) and now I'm looking at another compile error...

Seems that the hypot function does not exist in my math.h libraries...I presume.

peter@peter-mini-CNC:~/Code$ make plt2g
cc -g -O0 plt2g.c -o plt2g
/tmp/ccn6ddff.o: In function `sort_seg':
/home/peter/Code/plt2g.c:340: undefined reference to `hypot'
/home/peter/Code/plt2g.c:348: undefined reference to `hypot'
/home/peter/Code/plt2g.c:354: undefined reference to `hypot'
/tmp/ccn6ddff.o: In function `draw_vectors':
/home/peter/Code/plt2g.c:539: undefined reference to `hypot'
/home/peter/Code/plt2g.c:570: undefined reference to `hypot'
/tmp/ccn6ddff.o:/home/peter/Code/plt2g.c:630: more undefined references to `hypot' follow
/tmp/ccn6ddff.o: In function `do_file':
/home/peter/Code/plt2g.c:1210: undefined reference to `emit_gcode'
collect2: ld returned 1 exit status
make: *** [plt2g] Error 1
peter@peter-mini-CNC:~/Code$

I created a simple "result=sqrt(x*x+y*y)" substitute function that seems to satisfy that requirement but now a call to "emit_gcode(j) fails since emit_gcode is not defined anywhere., though there is a prototype for it in plt2g.h

You can probably tell my coding is very rusty...
Tweet this Post!Share on Facebook
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
My simple and cheap steel desktop router fahque99 DIY-CNC Router Table Machines 6 03-02-2009 02:22 AM
are there still no simple cheap good USB controllers? lithium Controller Cards 21 01-16-2009 02:49 PM
Simple, cheap servo controll. Kirbeh Stepper Motors and Drives 4 01-09-2008 03:33 AM
Simple cheap mill JBV Mechanical Calculations/Engineering Design 4 11-22-2005 06:20 PM
Simple cheap CNC router mwalach DIY-CNC Router Table Machines 7 10-28-2005 08:08 PM




All times are GMT -5. The time now is 01:21 AM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353