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
  • 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) How can I send a command "display none 17" from inside a ULP?
  • 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
  • State Not Answered
  • Replies 11 replies
  • Subscribers 181 subscribers
  • Views 1329 views
  • Users 0 members are here
Related

How can I send a command "display none 17" from inside a ULP?

lenaveryt
lenaveryt over 11 years ago

How can I send a command "display none 17" from inside a ULP?

I'm trying to create a ULP that will automatically generate a DXF file with only specific layers turned on.

I want these hard coded inside the ulp.

I'm basicly modifying the DXF.ulp to only generate layers 17,20,31,121

  • Sign in to reply
  • Cancel
  • Former Member
    0 Former Member over 11 years ago

    Hi Leonard,

    I suspect you may need to have a script file that sets the visible layers and execute the script from the ULP at the relevant point.

     

    If you have eg. make_my_layers_visible.scr  with the line

    DISPLAY NONE 17 20 31 121

    in it and then in the ULP use,

    system("SCRIPT ' "make_my_layers_visible.scr" ';");

     

    I haven't tried this so no guarantee it'll work like this but it's what I'd try if it was me image

     

    HTH,

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago

    On 02/18/2014 05:47 PM, Leonard Averyt wrote:

    How can I send a command "display none 17" from inside a ULP?

    I'm trying to create a ULP that will automatically generate a DXF file

    with only specific layers turned on.

    I want these hard coded inside the ulp.

    I'm basicly modifying the DXF.ulp to only generate layers 17,20,31,121

     

    --

    To view any images and attachments in this post, visit:

    http://www.element14.com/community/message/104172

     

     

    Like this:

     

    string cmd[];

     

    int idx = 0;

     

    if (board)

    {

      board(B)

      {

        cmd[idx++] = "DISPLAY NONE 170;";

        cmd[idx++] = "GRID ON;";

      }

    }

     

    exit(strjoin(cmd, '\n'));

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • dukepro
    0 dukepro over 11 years ago in reply to autodeskguest

    On 02/19/2014 07:10 AM, Eric Stevens wrote:

    On 02/18/2014 05:47 PM, Leonard Averyt wrote:

    How can I send a command "display none 17" from inside a ULP?

    I'm trying to create a ULP that will automatically generate a DXF file

    with only specific layers turned on.

    I want these hard coded inside the ulp.

    I'm basicly modifying the DXF.ulp to only generate layers 17,20,31,121

     

    --

    To view any images and attachments in this post, visit:

    http://www.element14.com/community/message/104172

     

    Like this:

     

    string cmd[];

     

    int idx = 0;

     

    if (board) {

     

        //

        // Make sure the correct layers and grid are set going into this ULP.

        // If the first argument is not "gridIsSet", then we need to set

        // the display and grid environment and re-invoke this ULP.

        // This assumes that the name of this ULP is "myDXF.ulp".

        //

        if (argv[1] != "gridIsSet") {

            // Setup the display, the grid, and re-invoke this ULP with an

        argument

           exit("display none 17 20 31 121;\ngrid on;\nrun myDXF gridIsSet;\n");

        }

     

      board(B)

      {

     

     

           // Other code to produce a DXF goes here.

           ...

     

      }

    }

     

     

     

    Attachments:
    77862.att1.html.zip
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to Former Member

    Daniel Wainwright wrote:

     

    Hi Leonard,

    I suspect you may need to have a script file that sets the visible

    layers and execute the script from the ULP at the relevant point.

     

    If you have eg. make_my_layers_visible.scr  with the line

    DISPLAY NONE 17 20 31 121

    in it and then in the ULP use,

    system("SCRIPT ' "make_my_layers_visible.scr" ';");

     

    I haven't tried this so no guarantee it'll work like this but it's what

    I'd try if it was me image

     

    no, that won't work. The system command launches other applications

    outside of eagle. It can not control the running instance of eagle.

     

    scripts or command strings can only be executed using the exit

    command.

    --

     

    Lorenz

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to autodeskguest

    Thanks for pointing that out, seems rather obvious in hindsight. image

     

    How does control return to the ULP after eagle executes the command given in the exit() function though?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • AnalogNotes
    0 AnalogNotes over 11 years ago in reply to Former Member

    soldersplash wrote:

    How does control return to the ULP after eagle executes the command given in the exit() function though?

    It doesn't.  image

     

    Why not do things the other way around and run a script first and call the ULP from that, something like:

     

    display none 17;

    run dxf.ulp;

    display last;

     

    You could even assign that to a button with the menu command.  Or did I completely miss the point?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    I need my glasses adjusted or something....

    I now see the 'run MyDXF' bit in:-

    Chuck

    exit("display none 17 20 31 121;\ngrid on;\nrun myDXF gridIsSet;\n");

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • lenaveryt
    0 lenaveryt over 11 years ago

    I haven't tried anything but the following. It does turn off the layers I don't want but exits the UPL. I need to add the check and reinvoke the ulp  like chuck suggested.

    If that doesn't work I may just do a script as was suggested.

     

    //
    // Main program: / FROM original DXF.ULP by Dr. L. Rossipaul Verlagsgesellschaft m.b.H
    //
    string OutputFileName;
    int DoDialog = argc == 1;
    string FileNameSuffix;

    for (int i = 1; i < argc; i++) {
        if      (argv[i] == "-s") FileNameSuffix = argv[++i];
        else if (argv[i] == "-u") {
                                    string u = strupr(argv[++i]);
                                    if (u) {
                                       if (u == "MM")
                                          Unit = MM;
                                       else if (u == "INCH")
                                          Unit = INCH;
                                       else {
                                          dlgMessageBox(usage + tr("<hr><b>ERROR: unknown unit: ") + argv[i] + "</b>");
                                          exit(1);
                                          }
                                       }
                                    else {
                                       dlgMessageBox(usage + tr("<hr><b>ERROR: missing <i>unit</i></b>"));
                                       exit(1);
                                       }
                                  }
        else if (argv[i] == "-a") AlwaysVectorFont = YES;
        else if (argv[i] == "-w") UseWireWidths = YES;
        else if (argv[i] == "-f") FillAreas = YES;
        else {
           dlgMessageBox(usage + tr("<hr><b>ERROR: unknown option: ") + argv[i] + "</b>");
           exit(1);
           }
        }
    string cmd[];
    int idx = 0;
    if (board)
      board(B) {
      cmd[idx++] = "DISPLAY NONE 17 20 31 121;";
      cmd[idx++] = "GRID ON;";
      exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ <- ********* always exits the ULP here.
         B.layers(L) {
           string s = L.name;
           if (L.visible && s[0] == '$') {
              VisibleSupplyLayer = YES;
              IsSupplyLayer[L.number] = YES;
              }
           }
         }

    else if (schematic)
       schematic(SCH) OutputFileName = SCH.name;

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to lenaveryt

    exit() will always exit the running ULP. The reentry method Chuck suggested is a good approach to running multiple process steps via a single ULP. I wouldn't split up a chunk of code unless you plan on reusing the SCR for other purposes. Why have to maintain two files if you don't need to.

     

    BTW, you don't need the cmd[idx++] = "GRID ON;"; statement if you don't need it. It was just part an example on building command strings.

     

    Eric

     

     

    On 02/20/2014 12:23 PM, Leonard Averyt wrote:

     

    if (board)

       board(B) {

       cmd[idx++] = "DISPLAY NONE 17 20 31 121;";

       cmd[idx++] = "GRID ON;";

       exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ *<- *********

    always exits the ULP here.*

          B.layers(L) {

            string s = L.name;

            if (L.visible && s[0] == '$') {

               VisibleSupplyLayer = YES;

               IsSupplyLayer[L.number] = YES;

               }

            }

          }

     

    else if (schematic)

        schematic(SCH) OutputFileName = SCH.name;

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • lenaveryt
    0 lenaveryt over 11 years ago in reply to autodeskguest

    Thanks, I'm really weak with C and C type programming, I'm a ladder guy normally but dabble. I can usually plagiarize and modify code to make what I want, just not good at overall picture etc.
    Thanks everyone, i'll try some of these and get back

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
>
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 © 2025 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.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube