Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
photoplot.log 99 KiB
Newer Older
Jason Kridner's avatar
Jason Kridner committed
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 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
(---------------------------------------------------------------------)
(                                                                     )
(    ARTWORK LOG                                                      )
(                                                                     )
(    Drawing          : BeagleBone-AI.brd                             )
(    Software Version : 17.2S049                                      )
(    Date/Time        : Wed Feb 19 11:28:08 2020                      )
(                                                                     )
(---------------------------------------------------------------------)



 ******************************************
 WARNING: DRC OUT OF DATE on this layout.
 ******************************************



 Can't open parameter file ... using default values:
     DEVICE-TYPE        GERBER6X00
     G-CODES            NO
     STATIONS-PER-WHEEL 24
     FILM-SIZE          24000 16000
     COORDINATES        ABSOLUTE
     OUTPUT-UNITS       INCHES
     FORMAT             5.3
     ABORT-ON-ERROR     abort film & continue
     SUPPRESS-LEAD-ZEROES     YES
     SUPPRESS-TRAIL-ZEROES    NO
     OPTIMIZE           YES
     SUPPRESS-EQUAL     YES
     SCALE              1.0





================================================================
     PROCESSING FILM < TOP >
     TO FILE < C:/Users/a0321898/Documents/GitHub/beaglebone-ai/HW/TOP.art > ...
================================================================

  FILM PARAMETERS :
  ---------------------------------------------------------
  Undefined line width                5.000 MIL
  Suppress shape fill on neg film     NO
  Mirror code                         NONE
  Rotate angle                        NONE
  Offset x:                           0.000
  Offset y:                           0.000
  Plot negative                       NO
  Suppress unconnected internal pads  DYNAMIC
  Draw holes only                     NO

    WARNING: Photoplot window (3650900 x 2610900) exceeds film size (2400000 x 1600000)
          stated in parameter file. 

    WARNING: 0 width line found at (-325.000 -125.000) in MIL
           ... using undefined line width of 5.000 MIL

    WARNING: Segment with same start and end points at
	(-485.143 609.002) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(475.000 159.502) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(803.652 512.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(972.000 170.998) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(972.002 244.002) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(972.000 278.498) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(972.002 351.502) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1538.569 1193.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1544.455 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1759.902 1043.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.098 1234.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2213.002 364.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2337.000 1080.388) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1475.687 378.313) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.771 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1216.492 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1247.988 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1279.484 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1216.492 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1279.484 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1247.988 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1373.972 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1342.476 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1310.980 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1310.980 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1342.476 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1492.779 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1492.779 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1492.779 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1524.275 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1468.461 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1524.276 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1618.763 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.771 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.771 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1524.275 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.771 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1618.763 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.259 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1681.755 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1681.755 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 298.402) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.259 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1681.755 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.259 424.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.259 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2447.929 1452.480) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2467.614 1452.480) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2487.299 1452.480) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2506.984 1452.480) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1358.213 1297.256) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1342.476 1312.992) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1373.972 1312.992) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1240.811 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1272.307 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1366.795 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1303.803 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1335.299 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1373.972 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1373.972 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1492.779 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1524.275 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1492.779 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 966.535) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1436.965 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1436.965 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.772 235.409) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1524.275 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1618.763 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1618.763 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1587.267 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1555.771 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 235.410) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 266.906) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1681.755 455.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1681.755 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1713.251 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1650.259 487.378) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2566.040 1295.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2487.299 1354.056) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2585.725 1314.685) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2566.039 1295.000) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 308.890) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.787 340.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 623.850) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1247.988 1470.472) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1279.484 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1373.972 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1342.476 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1389.709 1424.709) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1310.980 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1468.461 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1436.965 1470.472) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1499.957 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1562.949 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1531.453 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1625.941 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1720.429 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1657.437 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1846.413 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1814.917 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1783.421 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1751.925 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1877.909 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1972.398 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1909.406 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1940.902 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1940.902 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1972.398 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2003.894 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2003.894 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2448.288 1524.213) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2350.001 1682.500) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.787 623.850) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(775.882 802.657) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(775.882 802.658) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1562.949 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1625.941 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1594.445 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1688.933 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 592.354) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 560.858) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 592.354) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 560.858) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 592.354) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1405.469 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1499.957 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1468.461 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1531.453 966.535) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1531.453 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1688.933 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1657.437 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1751.925 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1720.429 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1814.917 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1814.917 998.031) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1846.413 998.032) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1940.902 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1972.398 966.536) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2066.886 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(2035.390 1470.473) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 277.394) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.788 277.394) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 340.386) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 371.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.787 371.882) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.788 466.370) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 466.370) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.788 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.787 466.370) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.787 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.283 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(263.788 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(295.284 497.866) will be ignored. Increasing output
	accuracy may allow segment to be generated.



  APERTURES USED (UNIT = IN):
  ---------------------------------------------------------
  TYPE       SIZE/NAME                   ROT   MIRROR MODE 
  ---------------------------------------------------------
  CIRCLE     0.00320                                  DARK 
  CIRCLE     0.00394                                  DARK 
  CIRCLE     0.00400                                  DARK 
  CIRCLE     0.00430                                  DARK 
  CIRCLE     0.00450                                  DARK 
  CIRCLE     0.00472                                  DARK 
  CIRCLE     0.00500                                  DARK 
  CIRCLE     0.00600                                  DARK 
  CIRCLE     0.00700                                  DARK 
  CIRCLE     0.00787                                  DARK 
  CIRCLE     0.00800                                  DARK 
  CIRCLE     0.01000                                  DARK 
  CIRCLE     0.01200                                  DARK 
  CIRCLE     0.01500                                  DARK 
  CIRCLE     0.01575                                  DARK 
  CIRCLE     0.01600                                  DARK 
  CIRCLE     0.02000                                  DARK 
  CIRCLE     0.02362                                  DARK 
  CIRCLE     0.03000                                  DARK 
  CIRCLE     0.03937                                  DARK 
  CIRCLE     0.04000                                  DARK 
  CIRCLE     0.06200                                  DARK 
  CIRCLE     0.06300                                  DARK 
  CIRCLE     0.06500                                  DARK 
  CIRCLE     0.07100                                  DARK 
  CIRCLE     0.09500                                  DARK 
  CIRCLE     0.12600                                  DARK 
  CIRCLE     0.17500                                  DARK 
  SQUARE     0.03200                     0.000 NO     DARK 
  SQUARE     0.03500                     0.000 NO     DARK 
  SQUARE     0.04000                     0.000 NO     DARK 
  SQUARE     0.05200                    45.000 NO     DARK 
  SQUARE     0.06200                     0.000 NO     DARK 
  SQUARE     0.06300                     0.000 NO     DARK 
  SQUARE     0.06693                     0.000 NO     DARK 
  SQUARE     0.13200                     0.000 NO     DARK 
  RECTANGLE  0.01181     x 0.02756      90.000 NO     DARK 
  RECTANGLE  0.01600     x 0.02000      90.000 NO     DARK 
  RECTANGLE  0.01600     x 0.03200      90.000 NO     DARK 
  RECTANGLE  0.02000     x 0.02200       0.000 NO     DARK 
  RECTANGLE  0.02000     x 0.02200      90.000 NO     DARK 
  RECTANGLE  0.02000     x 0.02400       0.000 NO     DARK 
  RECTANGLE  0.02165     x 0.01850       0.000 NO     DARK 
  RECTANGLE  0.02165     x 0.01850      90.000 NO     DARK 
  RECTANGLE  0.02500     x 0.04000      90.000 NO     DARK 
  RECTANGLE  0.03000     x 0.03500       0.000 NO     DARK 
  RECTANGLE  0.03000     x 0.03500      90.000 NO     DARK 
  RECTANGLE  0.03347     x 0.07874       0.000 NO     DARK 
  RECTANGLE  0.03400     x 0.07900       0.000 NO     DARK 
  RECTANGLE  0.03600     x 0.04000      90.000 NO     DARK 
  RECTANGLE  0.03740     x 0.02362       0.000 NO     DARK 
  RECTANGLE  0.03937     x 0.05512      90.000 NO     DARK 
  RECTANGLE  0.04000     x 0.05000      90.000 NO     DARK 
  RECTANGLE  0.04000     x 0.05900       0.000 NO     DARK 
  RECTANGLE  0.04000     x 0.10000      90.000 NO     DARK 
  RECTANGLE  0.04200     x 0.08700      90.000 NO     DARK 
  RECTANGLE  0.04331     x 0.02756       0.000 NO     DARK 
  RECTANGLE  0.04429     x 0.01968       0.000 NO     DARK 
  RECTANGLE  0.04429     x 0.01968      90.000 NO     DARK 
  RECTANGLE  0.04724     x 0.03937       0.000 NO     DARK 
  RECTANGLE  0.04724     x 0.03937      90.000 NO     DARK 
  RECTANGLE  0.04724     x 0.05512      90.000 NO     DARK 
  RECTANGLE  0.05900     x 0.09800       0.000 NO     DARK 
  RECTANGLE  0.14173     x 0.05315      90.000 NO     DARK 
  OBLONG     0.00787     x 0.01968       0.000 NO     DARK 
  OBLONG     0.00787     x 0.02756      90.000 NO     DARK 
  OBLONG     0.00800     x 0.03200       0.000 NO     DARK 
  OBLONG     0.00800     x 0.03200      90.000 NO     DARK 
  OBLONG     0.01000     x 0.02800       0.000 NO     DARK 
  OBLONG     0.01000     x 0.03200       0.000 NO     DARK 
  OBLONG     0.01000     x 0.03200      90.000 NO     DARK 
  OBLONG     0.02000     x 0.04000       0.000 NO     DARK 
  OBLONG     0.02000     x 0.04000      90.000 NO     DARK 
  OBLONG     0.02953     x 0.00787       0.000 NO     DARK 
  OBLONG     0.02953     x 0.00787      90.000 NO     DARK 
  OBLONG     0.03150     x 0.01181       0.000 NO     DARK 
  OBLONG     0.03150     x 0.01181      90.000 NO     DARK 
  OBLONG     0.03937     x 0.06299      90.000 NO     DARK 
  OBLONG     0.03937     x 0.07087      90.000 NO     DARK 
  OBLONG     0.05118     x 0.09252      90.000 NO     DARK 
  OBLONG     0.08000     x 0.13500      90.000 NO     DARK 

     TOP created with warnings


================================================================
     PROCESSING FILM < LAY2_GND >
     TO FILE < C:/Users/a0321898/Documents/GitHub/beaglebone-ai/HW/LAY2_GND.art > ...
================================================================

  FILM PARAMETERS :
  ---------------------------------------------------------
  Undefined line width                5.000 MIL
  Mirror code                         NONE
  Rotate angle                        NONE
  Offset x:                           0.000
  Offset y:                           0.000
  Plot negative                       NO
  Suppress unconnected internal pads  DYNAMIC
  Draw holes only                     NO

    WARNING: Photoplot window (3650900 x 2610900) exceeds film size (2400000 x 1600000)
          stated in parameter file. 

    WARNING: Multiple 0 width lines; all will be treated the same as the first.
           ... using undefined line width of 5.000 MIL



  APERTURES USED (UNIT = IN):
  ---------------------------------------------------------
  TYPE       SIZE/NAME                   ROT   MIRROR MODE 
  ---------------------------------------------------------
  CIRCLE     0.00500                                  DARK 
  CIRCLE     0.01500                                  DARK 
  CIRCLE     0.01600                                  DARK 
  CIRCLE     0.02000                                  DARK 
  CIRCLE     0.02362                                  DARK 
  CIRCLE     0.03000                                  DARK 
  CIRCLE     0.03937                                  DARK 
  CIRCLE     0.06200                                  DARK 
  CIRCLE     0.06500                                  DARK 
  CIRCLE     0.09500                                  DARK 
  CIRCLE     0.17500                                  DARK 
  OBLONG     0.03937     x 0.06299      90.000 NO     DARK 
  OBLONG     0.03937     x 0.07087      90.000 NO     DARK 
  OBLONG     0.05118     x 0.09252      90.000 NO     DARK 
  OBLONG     0.08000     x 0.13500      90.000 NO     DARK 

     LAY2_GND created with warnings


================================================================
     PROCESSING FILM < LAY3 >
     TO FILE < C:/Users/a0321898/Documents/GitHub/beaglebone-ai/HW/LAY3.art > ...
================================================================

  FILM PARAMETERS :
  ---------------------------------------------------------
  Undefined line width                5.000 MIL
  Mirror code                         NONE
  Rotate angle                        NONE
  Offset x:                           0.000
  Offset y:                           0.000
  Plot negative                       NO
  Suppress unconnected internal pads  DYNAMIC
  Draw holes only                     NO

    WARNING: Photoplot window (3650900 x 2610900) exceeds film size (2400000 x 1600000)
          stated in parameter file. 

    WARNING: Segment with same start and end points at
	(1263.724 1580.720) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1358.212 1549.224) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1327.111 1485.839) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1404.961 489.323) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1389.531 678.890) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1399.531 688.890) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at
	(1830.677 1454.737) will be ignored. Increasing output
	accuracy may allow segment to be generated.



  APERTURES USED (UNIT = IN):
  ---------------------------------------------------------
  TYPE       SIZE/NAME                   ROT   MIRROR MODE 
  ---------------------------------------------------------
  CIRCLE     0.00400                                  DARK 
  CIRCLE     0.00450                                  DARK 
  CIRCLE     0.00475                                  DARK 
  CIRCLE     0.00500                                  DARK 
  CIRCLE     0.01000                                  DARK 
  CIRCLE     0.01200                                  DARK 
  CIRCLE     0.01300                                  DARK 
  CIRCLE     0.01500                                  DARK 
  CIRCLE     0.01600                                  DARK 
  CIRCLE     0.02000                                  DARK 
  CIRCLE     0.02362                                  DARK 
  CIRCLE     0.03937                                  DARK 
  CIRCLE     0.04000                                  DARK 
  CIRCLE     0.06200                                  DARK 
  CIRCLE     0.06500                                  DARK 

     LAY3 created with warnings


================================================================
     PROCESSING FILM < LAY4_GND >
     TO FILE < C:/Users/a0321898/Documents/GitHub/beaglebone-ai/HW/LAY4_GND.art > ...
================================================================

  FILM PARAMETERS :
  ---------------------------------------------------------
  Undefined line width                5.000 MIL
  Mirror code                         NONE
  Rotate angle                        NONE
  Offset x:                           0.000
  Offset y:                           0.000
  Plot negative                       NO
  Suppress unconnected internal pads  DYNAMIC
  Draw holes only                     NO

    WARNING: Photoplot window (3650900 x 2610900) exceeds film size (2400000 x 1600000)
          stated in parameter file. 



  APERTURES USED (UNIT = IN):
  ---------------------------------------------------------
  TYPE       SIZE/NAME                   ROT   MIRROR MODE 
  ---------------------------------------------------------
  CIRCLE     0.00500                                  DARK 
  CIRCLE     0.01500                                  DARK 
  CIRCLE     0.01600                                  DARK 
  CIRCLE     0.02362                                  DARK 
  CIRCLE     0.03000                                  DARK 
  CIRCLE     0.03937                                  DARK 
  CIRCLE     0.04000                                  DARK 
  CIRCLE     0.06200                                  DARK 
  CIRCLE     0.06500                                  DARK 

     LAY4_GND created with warnings


================================================================
     PROCESSING FILM < LAY5 >
     TO FILE < C:/Users/a0321898/Documents/GitHub/beaglebone-ai/HW/LAY5.art > ...
================================================================

  FILM PARAMETERS :
  ---------------------------------------------------------
  Undefined line width                5.000 MIL
  Mirror code                         NONE
  Rotate angle                        NONE
  Offset x:                           0.000
  Offset y:                           0.000
  Plot negative                       NO
  Suppress unconnected internal pads  DYNAMIC
  Draw holes only                     NO

    WARNING: Photoplot window (3650900 x 2610900) exceeds film size (2400000 x 1600000)
          stated in parameter file. 

    WARNING: Segment with same start and end points at
	(330.143 244.998) will be ignored. Increasing output
	accuracy may allow segment to be generated.

    WARNING: Segment with same start and end points at