Hello Guest it is April 24, 2024, 01:56:57 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BR549

Pages: « 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 »
1191
Always use the WHile Ismoving()  / Wend after each single motion call or Group of motion calls.

(;-) TP

1192
General Mach Discussion / Re: call subprogram from macro?
« on: May 03, 2015, 02:33:01 PM »
You will not find any mention of any redirection use or SUB use in a macro in ANY manual (;-) You just read the manual on that function.

THE #var info is in the Mach3 manuals .

To redirect BACK to the line after the Mcode you MUST put in the sub call line.


M100  ( the macro jumps to o100 in the Gcode)
o101
code
code
code
M30

o100
M101   ( this macro will Jump back to the o101 sub call line)



1193
Brains Development / Re: GCODE INPUT TO BRAIN
« on: May 03, 2015, 02:06:15 PM »
(;-) TP

1194
General Mach Discussion / Re: call subprogram from macro?
« on: May 03, 2015, 01:53:47 PM »
NO you CANNOT call a sub from a macro as it has nowhere to return to as the Gcode side cannot SEE the M98 that is in the macro. You will get an erro"SUB called with no return"  But that does not mean you cannot redirect the end of the sub back to another Sub call line. basically back to the line after the macro. You just have to be clever.

SO more notes on Macros.

When you read or write to dros or variable give it a bit of sleep time to get it all done

SetOemDro(10,GetVar(24))         I use 100ms for each function(read/write)
sleep(300)

Group your motion code and use   WHile Ismoving() to wait untill Mach3 is done with it.  This will HOLD the macro until motion stops. Use it with ANY and all motion codes. Use it with a single call or a group call for motion.

Code"G0 X0Y0"
Code" X10"
Code" Y10"
Code"X0"
Code"Y0"

While Ismoving()
Wend


Hope that helps, (;-) TP

1195
General Mach Discussion / Re: call subprogram from macro?
« on: May 03, 2015, 01:36:21 PM »
YES and NO (;-)   I use teh rediredtion fnctio of the M98 to move to another spot in Gcode from a macro. For example

G0 X0 Y0
M100         ( this macro is used to redirect to a o100 point in the Gcode. It is simply Code"M98 P100")
X10
Y10
X0
Y0
o100
x1 Y1

The macro will JUMPTO the sub call line o100 BUT it cannot return so the redirection is one way. Of course you could use the call again to JUMPTO back to another sub call line.

You can also add conditional CB code to make decisions as what you need to do . MUCH like conditional Gcode. You can also add outside param to eth macro to program the conditional Mcode on the fly as M100 Pxx Qxx Rxx  you have 3 params to work with for each Mcode. ALSO you have ALL the #vars you can add as well. Mcode PxxQxxRxx #1=100 #31=300.. THE #vars are solved FIRST in the call line so they WILL be available when the macro runs.

I will double check on a straight SUb call from a macro to be sure about it. it has been a LONG time last I played with that idea. (;-)



1196
I think it assumes the macro will be in the Macro directory of the current profile you are running.

For a standard Mach3 load it would be C:\mach3\macros\Mach3mill\  . That is where you put your "M4000.m1s "macro.

Then call it with RunScript("M4000")   , Note the "  " and no extension.

You need to try that as that is from memory, (;-)

1197
Where are you changing the address at Mach3 or the PC ?

(;-) TP

1198
Here is the problem in  a nut shell.. The Gocde side of Mach3 and the Macros side of Mach3 "CB" are NOT synced together well. One can get out of order sync from the other resulting in some ODD things occuring.  The key is you have to Safeguard the operational order of execution with wait states OR code to prevent it from happening. Also when you apply a wait state you never really know how LONG to allow so you have to add time to it incase of it running short. What can happen is it can skip OVER sections of code and the skipped code either does NOT run or is run out of order.

Another problem is the more you protect the script the LONGER it takes to run (;-) This can add unwated delays to some scripts making it drag along .


Same problem with calling a macro from a macro only worse. That is why RunScript() was developed it helps ensure the order of execution is maintained. RUNscipt() will HOLD the execution of the next line from  running UNTIL the execution of the RunScript() is finished.

NOT saying you should not run Motion and CB macro in the same script BUT be warned "There be Dragons in the woods".

I personally make the bulk of motion in a gcode program then use macros to make decisions or to program a function  and occasionally have the emacro make a NON important Motion move (positional) with safeguards.  Remember that mach3 was designed as a CNC controller not a general purpose motion controller.  Straight Gcode it does Well. Mixed not so well.

Just my opinion, Your mileage may vary (;-).

(;-) TP

(;-) TP

1199
That is because some PCs use roving address settings for ports. It can be different each time the PC starts  It sets it to whatever it wants to use. You can change this to use a standard address each time it opens.

(;-) TP

1200
General Mach Discussion / Re: Cancel the A axis
« on: May 02, 2015, 11:43:21 AM »
If you do not want the A axis to move do not give it any motion commands. It will NOT move until you tell it to.

(;-) TP

Pages: « 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 »