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! > Machine Controllers Software and Solutions > LinuxCNC (formerly EMC2)


LinuxCNC (formerly EMC2) Discuss LinuxCNC (formerly EMC2) Controlers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-15-2007, 10:13 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road
EMC2 & Limit Switches

Can anyone help with info on setting up limit switches in EMC2? I have read what I thought were the relevant sections of the integrators manual but can't seem to find anything useful.

I am using a CandCNC mini-io bd. I have installed a roller arm micro switch at each end of my X, Y and Z axii. I have wired them in series NC (normally closed). I am planning to connect them to pin 15. Then when I install the home switches, I plan to connect X to pin 11, Y to pin 12 and Z to pin 13. My Estop is connected to pin 10. (The mini-io bd uses the xylotex pinouts.)

What I really need to know is how to name what they logically connect to?
For example the estop (pin 10) connects to "iocontrol.0.emc-enable-in" like below.
linkpp parport.0.pin-10-in iocontrol.0.emc-enable-in

So if I have it right so far, then the limits would be --
linkpp parport.0.pin-15-in iocontrol.0.??????
X home would be --
linkpp parport.0.pin-11-in iocontrol.0.??????
Y home would be --
linkpp parport.0.pin-12-in iocontrol.0.??????
and Z home would be --
linkpp parport.0.pin-13-in iocontrol.0.??????

Thanks in advance for any help.
__________________
http://www.alansmachineworks.com
Reply With Quote

  #2   Ban this user!
Old 01-16-2007, 08:39 AM
 
Join Date: Apr 2005
Location: finland
Posts: 262
andy55 is on a distinguished road

EMC's HAL interface is described here:
http://www.linuxcnc.org/docs/html/co...hal/index.html

in EMC2, iocontrol is only used for non-RT stuff, like coolant etc. so the pins you want are either in motion., or in axis.

AW
Reply With Quote

  #3   Ban this user!
Old 01-16-2007, 12:34 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road

AW,

In the example for connecting E-stop, they show e-stop being in io-control. That seems to me to be as time critical as limits. What am I missing?
__________________
http://www.alansmachineworks.com
Reply With Quote

  #4   Ban this user!
Old 01-16-2007, 12:44 PM
 
Join Date: Apr 2005
Location: finland
Posts: 262
andy55 is on a distinguished road

Originally Posted by acondit View Post
AW,
In the example for connecting E-stop, they show e-stop being in io-control. That seems to me to be as time critical as limits. What am I missing?
an E-stop signal is indeed connected to
iocontrol.0.emc-enable-in
and it runs in userspace, i.e. non-RT.

The idea here is that you should _hardwire_ that same E-stop button to control the powersupply etc. of your motors/spindle. On big machines there would also be brakes on the axes/spindle to halt motion.
This way your external E-stop button will still do it's job even if your computer has crashed or is unresponsive.

So, when you press E-stop, motion immediately stops, and EMC is informed of this pretty quickly also, but not in realtime.

AW
Reply With Quote

  #5   Ban this user!
Old 01-16-2007, 12:54 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road

Andy,

Thanks. I looked in the link you gave me and I still don't see what pin names I should use for the limits.

For the home switches:
It looks like x-axis home should be:
linkpp parport.0.pin-11-in axis.0.home-sw-in

y-axis home should be:
linkpp parport.0.pin-12-in axis.1.home-sw-in

z-axis home should be:
linkpp parport.0.pin-13-in axis.2.home-sw-in

Are these correct for my home switches?
__________________
http://www.alansmachineworks.com
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 01-16-2007, 01:07 PM
 
Join Date: Apr 2005
Location: finland
Posts: 262
andy55 is on a distinguished road

your idea for home-switches looks ok.

It looks like you've found a documentation bug. Congratulations!
Documentation is one area where non-programmers can help an open source project a lot ! (wink, wink)

what you are looking for is probably
axis.*.neg-lim-sw-in and
axis.*.pos-lim-sw-in

in the meantime, you should learn to use all the HAL tools available, for example with halshow you can see all the available pins. The names should mostly be self-explanatory
http://www.linuxcnc.org/docs/html/ha...how/index.html

AW
Reply With Quote

  #7   Ban this user!
Old 01-16-2007, 01:17 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road

Andy,

I am also a developer, but I have to get my feet wet and understand stuff better before I try to do any coding.

Thanks,
__________________
http://www.alansmachineworks.com
Reply With Quote

  #8   Ban this user!
Old 01-18-2007, 01:16 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road
Limit switch configuration

I got some help from John Kasunich. He said that I needed to create a new signal and connect it to the parallel port pin that I wanted to use and then connect the signals for each axis-limit to that signal. I tried it and it worked.
Here is the configuration that I had to add to the file "xylotex_pinout.hal".

# create a signal for the combined limit switches
newsig on-limit bit
# connect it to the parport pin
linksp on-limit parport.0.pin-15-in
# connect it to all of the motion controller limit inputs
linksp on-limit axis.0.neg-lim-sw-in
linksp on-limit axis.0.pos-lim-sw-in
linksp on-limit axis.1.neg-lim-sw-in
linksp on-limit axis.1.pos-lim-sw-in
linksp on-limit axis.2.neg-lim-sw-in
linksp on-limit axis.2.pos-lim-sw-in

Thanks to both Andy and John for their help,
Alan
__________________
http://www.alansmachineworks.com
Reply With Quote

  #9   Ban this user!
Old 01-18-2007, 06:30 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road
Limits -- Estop interaction

I am running Axis as my interface. Now the limits are working but when I drive an axis into the limits, and try to bring it off of the limit switch, the machine power button is dimmed and I can't bring it out of Estop. It seems like the minute that the limit switch clears, something is being disabled and I can't clear it.

If I edit the config and use the original Estop loop back it works fine, but it doesn't like having the real Estop switch enabled. This is what I am using to enable the Estop switch.

linkpp parport.0.pin-10-in-not iocontrol.0.emc-enable-in

Pin 10 is pulled high and goes to one side of the Estop switch, the other side of the Estop switch is connected to ground. The switch is closed when out and open when you hit the Estop. I measured the voltage after it quits working and with the switch open it only measures 0.89 volts. It is like pin 10 is being pulled low by the pc rather than functioning as an input pin.

Help!!

Alan
__________________
http://www.alansmachineworks.com
Reply With Quote

  #10   Ban this user!
Old 01-22-2007, 11:52 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road
Estop problem fixed

I replaced the first mini-IO board with a spare that I had and everything is working.

It seems that the opto isolator in my first CandCNC mini-IO board went south. I called Tom at CandCNC and he said send it back he'd fix it. I really appreciate the great service from CandCNC.

Alan
__________________
http://www.alansmachineworks.com
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 01-29-2007, 01:41 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road
Changed my limit switches

I re-did my limit switch loop. I was getting three error messages when I ran into a limit because as far as it was concerned I had hit all three limits at once. Now I only get a limit message for the appropriate axis.

I separated it into 3 loops, one for each axis. So each loop has two switches. On each axis I use one of the switches as both a limit and home and the other as just a limit. EMC2 supports this in software. It ignores the limit when homing. It can run into a switch, back off, slow down and run into it slowly to increase the accuracy, and the back off a measured distance and set the home position. Even those cheap Radio Shack switches seem fairly accurate and repeatable.

Here is the changes to my xylotex_pinout.hal ini file (besides commenting out all the stuff that I did to link the 6 switches together as one big loop).

# create a signal for the x home
# create a signal for the x limit switches
newsig x-limit-reached bit
# connect it to the parport pin
linksp x-limit-reached parport.0.pin-11-in
linksp x-limit-reached axis.0.home-sw-in
linksp x-limit-reached axis.0.neg-lim-sw-in
linksp x-limit-reached axis.0.pos-lim-sw-in

# create a signal for the y home
# create a signal for the y limit switches
newsig y-limit-reached bit
# connect it to the parport pin
linksp y-limit-reached parport.0.pin-12-in
linksp y-limit-reached axis.1.home-sw-in
linksp y-limit-reached axis.1.neg-lim-sw-in
linksp y-limit-reached axis.1.pos-lim-sw-in

# create a signal for the z home
# create a signal for the z limit switches
newsig z-limit-reached bit
# connect it to the parport pin
linksp z-limit-reached parport.0.pin-13-in
linksp z-limit-reached axis.2.home-sw-in
linksp z-limit-reached axis.2.neg-lim-sw-in
linksp z-limit-reached axis.2.pos-lim-sw-in

If this helps anyone else then great!

Alan
__________________
http://www.alansmachineworks.com
Reply With Quote

  #12   Ban this user!
Old 07-18-2007, 06:34 AM
 
Join Date: May 2005
Location: canada
Posts: 1,149
cyclestart is on a distinguished road

Apologies for dragging up this old thread. I'm looking at the mini-io board and getting a bit confused.

Are you using the charge pump feature or is this easily bypassed? No obvious reference to it in this thread. Most of the info available seems to revolve around Mach software. Using xylotex (if that's a factor).
__________________
Anyone who says "It only goes together one way" has no imagination.
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 On
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 02:50 PM.





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 354 355 356 357 358 359 360 361