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 > Fanuc


Fanuc Discuss Fanuc controllers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-14-2008, 06:25 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road
local variables of a macro

A macro may use several local variables for intermediate calculations. Since such variables do not appear in the argument list, these are initially null variables (like #0). But when the macro is called these variables get modified.
My question is that if the same calling program calls the macro again, will such variables be null variables again, or will they have the values stored in them during the previous call of the macro?
I know that local variables of a macro are not defined outside the macro. But do these remain in the memory of CNC for subsequent call(s) of that particular macro?
My guess is that these will always be null variables in every call of macro. I want a confirmation, please!
Reply With Quote

  #2   Ban this user!
Old 01-14-2008, 07:10 AM
 
Join Date: Mar 2006
Location: U.K.
Posts: 61
Stu_M3 is on a distinguished road

Personaly i only use local variables for values which are calculated each time the macro runs. I use common variables ie #500 onward (Fanuc) to store set up parameters which I want to remain the same every time the macro is run and also these values will be retained at power off/on.

Regards stu.
Reply With Quote

  #3   Ban this user!
Old 01-14-2008, 09:41 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

According to the manual (see attached .jpg), variables #1-#33 and #100-#199 are initialized to null at power off. #500-#999 retain their values. I'm not in front of a control, so I can't verify what happens to the variables once the macro has run.
Attached Thumbnails
Click image for larger version

Name:	Variable Types.jpg‎
Views:	106
Size:	85.5 KB
ID:	50720  
Reply With Quote

  #4   Ban this user!
Old 01-15-2008, 03:21 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

Originally Posted by dcoupar View Post
...I'm not in front of a control, so I can't verify what happens to the variables once the macro has run.
If possible, kindly verify and let us know.
Reply With Quote

  #5   Ban this user!
Old 01-15-2008, 04:44 AM
 
Join Date: Sep 2005
Location: USA
Age: 60
Posts: 755
Dan Fritz is on a distinguished road

It's been a while since I've written macros, but here's how I remember them working:

The values of local variables are passed to the macro with "arguments", and can also be used within the macro for multi-step calculations. They hold their values within the macro, but if you return (M99) from the macro to the calling program and call the macro again, the local variables will have new values, based upon the new arguments. If no arguments are used to pass values to the macro, the values are null, like #0. A null variable has the numeric value of zero in a calculation.

The "common" variables in the #100-#199 range do hold their values as you call macros and return from macros. They do lose their values when you turn the control off, however. The variables from #500 to #999 hold their values even if you power the control down and back up.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 01-15-2008, 09:20 AM
 
Join Date: May 2007
Location: US
Posts: 779
Andre' B is on a distinguished road

Originally Posted by sinha_nsit View Post
My guess is that these will always be null variables in every call of macro. I want a confirmation, please!
It is possible that on some machines they may retain values from the last time the sub was called.

But since they are local to the (level) of the sub call and not the sub itself and for just good progamming practice (regardless of the programming language) it would be a bad idea to assume it will always be true.

Edit : So you should always set a local variable to a known value either in the line calling the sub or within the sub itself.


I wish the macro sub calls used a stack system rather then that fixed number of levels.
Reply With Quote

  #7   Ban this user!
Old 01-15-2008, 05:53 PM
jamesweed's Avatar  
Join Date: Jan 2007
Location: USA
Posts: 82
jamesweed is on a distinguished road

Its possible on some Fanucs that the commons #100-#199 will change to null with a control reset. There is a parameter to set that will stop this from happening. I only want them to clear at powerdown. My oi/mc came to me this way.
Reply With Quote

  #8   Ban this user!
Old 01-16-2008, 02:12 AM
 
Join Date: Oct 2007
Location: United Kingdom
Posts: 393
Brakeman Bob is on a distinguished road

It has been a while since I have worked on Fanuc, but if memory serves there is a machine parameter to govern what happens to # variables (well there was on M150i four yeears ago). Variables #1 to #33 are cleared at program stop and/or reset. Variables #100 to #199 may be set to clear at program stop, program reset or power down. Variables #500 and above are stored at power down and restored at power up.
Reply With Quote

  #9   Ban this user!
Old 01-16-2008, 06:19 AM
neilw20's Avatar  
Join Date: Jun 2007
Location: Australia
Age: 63
Posts: 2,338
neilw20 is on a distinguished road
Lightbulb Make your own stack if you want one.

Originally Posted by Andre' B View Post
It is possible that on some machines they may retain values from the last time the sub was called.

But since they are local to the (level) of the sub call and not the sub itself and for just good progamming practice (regardless of the programming language) it would be a bad idea to assume it will always be true.

Edit : So you should always set a local variable to a known value either in the line calling the sub or within the sub itself.


I wish the macro sub calls used a stack system rather then that fixed number of levels.
Note: THIS SHOULD WORK IN Mach3, but I know nothing about Fanuc Syntax.

Lets say our stack is at #1000
Let #996 to #999 be temporary X,Y,Z,A variables that can be destroyed by a call.
Let #99 be our index.

(start of program)
#99 = 0

(set up #996 to #999 here if you need to)
call subroutines, and you can nest them if you want.

M30 (end of program)
(---------------------)
O1234 (subroutine label)
(subroutine with X,Y,Z and A in #996,#997,#998 and #999)
#99 = #99 + 4 (first lline)
(access private stack)
#[1000 + #99] = #996 (save X value)
#[1001 + #99] = #997 (save Y value)
#[1002 + #99] = #998 (save Z value)
#[1003 + #99] = #999 (save A value)
G1 X[#996] Y[#997] Z[#998] A[#999]
(more G-Code)

(other calls)
#997 = 0 (you can destroy this if you want)
(other calls)

#99 = #99 - 4 (restore on exit this subroutine level)
M99 (return)
(end subroutine)

Other subroutines called will have their own private stack if use the #99 calling and exit convention.
__________________
Super X3. 3600rpm. Three ways to fix things: The right way, the other way, and maybe your way, which is possibly a faster wrong way.
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
macro variables sinha_nsit Fanuc 5 01-15-2008 03:42 AM
Local variables jorgehrr G-Code Programing 4 02-19-2007 03:03 PM
Variables/Macro uses.... theemudracer Fanuc 12 12-13-2006 01:45 PM
Variables/Macro use ???? theemudracer G-Code Programing 2 12-11-2006 09:47 AM
G65 local variables help FanukRC G-Code Programing 7 07-25-2006 06:00 PM




All times are GMT -5. The time now is 07:43 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