element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) Extremely repetitive script
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 1 reply
  • Subscribers 188 subscribers
  • Views 234 views
  • Users 0 members are here
Related

Extremely repetitive script

e14 Contributor
e14 Contributor over 14 years ago

So I've been tasked with the job of designing a circuit board with 10240 pads on it.  I can split it up into 10 sections of 1024 pads, so let's assume I only need to make 1024 pads since copying that section and moving it into the appropriate positions I need is pretty simple for this geometry.  I've been looking into scripting this one out since I don't feel like spending days and days doing this, but I've yet to find an easy way to make loops in .scr files.  ULP's I know you can make loops in, but I'm unsure (if this is even the way to do it) of how one would send the appropriate arguments to the appropriate .scr file or how to even run a .scr file from a ULP (I know you can run a ULP from a .scr, but I'm not sure it works the other way).  Am I missing something really obvious?

  • Sign in to reply
  • Cancel
Parents
  • dukepro
    dukepro over 14 years ago

    On 02/02/2012 02:34 AM, wesman26 wrote:

    So I've been tasked with the job of designing a circuit board with

    10240 pads on it.  I can split it up into 10 sections of 1024 pads,

    so let's assume I only need to make 1024 pads since copying that

    section and moving it into the appropriate positions I need is pretty

    simple for this geometry.  I've been looking into scripting this one

    out since I don't feel like spending days and days doing this, but

    I've yet to find an easy way to make loops in .scr files.  ULP's I

    know you can make loops in, but I'm unsure (if this is even the way

    to do it) of how one would send the appropriate arguments to the

    appropriate .scr file or how to even run a .scr file from a ULP (I

    know you can run a ULP from a .scr, but I'm not sure it works the

    other way).  Am I missing something really obvious?

     

    You could write your program in any number of other languages.  C,

    Basic, Perl, etc.  You're not stuck with ULP.

     

    But if you do choose to use ULP, you want to start with an output statement:

     

    output("myfile.scr") {

    ...

    }

     

    Every print inside the braces will be written to the specified file.

     

    Next, inside the braces place the code that will iterate through each

    pad.  perhaps something like:

     

        int block, xpad, ypad;

        for (block = 0; block < 10; ++block) {

            for (xpad = 0; xpad < 32; ++xpad) {

                for (ypad = 0; ypad < 32; ++ypad) {

                    // calculate x and y coordinates of this pad

                    ...

                    // Emit to the script file

                    printf("pad (%f %f);\n", xcoord, ycoord);

                }

            }

        }

     

    Then when everything is done, and you're outside of your output block,

    exit with a string argument, where the argument is the name of the

    script file to execute:

     

        exit("myfile.scr");

     

     

    The precise syntax may be off a bit, but that's the outline.

     

    As I mentioned above, it might be easier to write a C program for this,

    and just redirect the output to your script file.

     

    Enjoy,

        - Chuck

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • dukepro
    dukepro over 14 years ago

    On 02/02/2012 02:34 AM, wesman26 wrote:

    So I've been tasked with the job of designing a circuit board with

    10240 pads on it.  I can split it up into 10 sections of 1024 pads,

    so let's assume I only need to make 1024 pads since copying that

    section and moving it into the appropriate positions I need is pretty

    simple for this geometry.  I've been looking into scripting this one

    out since I don't feel like spending days and days doing this, but

    I've yet to find an easy way to make loops in .scr files.  ULP's I

    know you can make loops in, but I'm unsure (if this is even the way

    to do it) of how one would send the appropriate arguments to the

    appropriate .scr file or how to even run a .scr file from a ULP (I

    know you can run a ULP from a .scr, but I'm not sure it works the

    other way).  Am I missing something really obvious?

     

    You could write your program in any number of other languages.  C,

    Basic, Perl, etc.  You're not stuck with ULP.

     

    But if you do choose to use ULP, you want to start with an output statement:

     

    output("myfile.scr") {

    ...

    }

     

    Every print inside the braces will be written to the specified file.

     

    Next, inside the braces place the code that will iterate through each

    pad.  perhaps something like:

     

        int block, xpad, ypad;

        for (block = 0; block < 10; ++block) {

            for (xpad = 0; xpad < 32; ++xpad) {

                for (ypad = 0; ypad < 32; ++ypad) {

                    // calculate x and y coordinates of this pad

                    ...

                    // Emit to the script file

                    printf("pad (%f %f);\n", xcoord, ycoord);

                }

            }

        }

     

    Then when everything is done, and you're outside of your output block,

    exit with a string argument, where the argument is the name of the

    script file to execute:

     

        exit("myfile.scr");

     

     

    The precise syntax may be off a bit, but that's the outline.

     

    As I mentioned above, it might be easier to write a C program for this,

    and just redirect the output to your script file.

     

    Enjoy,

        - Chuck

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube