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
Forum Have a question about CadSoft EAGLE?  Ask our Expert, Richard! (Archive)
  • 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 1129 replies
  • Subscribers 245 subscribers
  • Views 51165 views
  • Users 0 members are here
  • eagle
  • expert
  • richard_hammerl
  • cadsoft
Related

Have a question about CadSoft EAGLE?  Ask our Expert, Richard! (Archive)

nlarson
nlarson over 16 years ago

This thread is now locked - but you can still ask Richard by posting your questions here.  If you'd rather browse other member's questions you can read the CadSoft EAGLE Forums for past questions and answers. Enjoy!

 

Browse past Q&A help on anything technical relating to CadSoft EAGLE!


image

 

Richard Hammerl

Richard is an engineer with 16 years experience in EAGLE customer support and is waiting for your questions.

  • Sign in to reply
  • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago in reply to Richard_H

    Richard,

     

    Yes, that got the silk layers back and they seem to work ok.  However, there is still weirdness.  DRC returns 1250 errors, all Stop Mask violations caused by the Names.  If I turn the tNames layer off, all those errors go away.  So it is treating the text in the tNames layer as though they are traces.  My other board project does not do this.  Is there some attribute of the Names layer that got changed, maybe?

     

    Thanks,

     

    Michael Watts

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Richard_H
    Richard_H over 14 years ago in reply to e14 Contributor

    I'm down to the silkscreen and the files must ship Friday.  Suddenly,  the silk screen layers have disappeared!!  They (layers 121 and 122) do  not show up in the layers list.  What have I done to make them  disappear and what must I do to get them back?  I'm only slightly  paniced.

     

    I'm doing two board designs and the silk screen layers show up in one but not the other.

     

    Hi Mike,

     

    please try  SET USED_LAYERS ALL;  in the command line.  Does it help?

     

    Regards,
    Richard

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago in reply to e14 Contributor

    Richard,

     

    I'm down to the silkscreen and the files must ship Friday.  Suddenly, the silk screen layers have disappeared!!  They (layers 121 and 122) do not show up in the layers list.  What have I done to make them disappear and what must I do to get them back?  I'm only slightly paniced.

     

    I'm doing two board designs and the silk screen layers show up in one but not the other.

     

    Thanks!

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Richard_H
    Richard_H over 14 years ago in reply to e14 Contributor

    K Sz wrote:

     

    Hi Richard,

     

    I study the ULP Bill of Materials and i don't know what this line is exactly doing:

    sprintf(s, "%s%-*s", line ? " " : "", Width[i], a[i]);

    What about the "%s%-*s" line ? " " : "" part of the line?

    I would be grateful if you could explain it to me that how is it works.

     

    Thanks.

    Hi,

     

    I hope I can explain it correctly....

     

    sprintf(s, "%s%-*s", line ? " " : "", Width[i], a[i]);

     

     

    s    this is the string that will be written

    %s  belongs to  line ? " " : ""   determines whether there is a blank in the beginning of the line or not

    %-*  belongs to Width[i]          specifies the space which is reserved for the string

       s  belongs to a[i]                is a string taken from an array a[]

     

     

    Hope this helps.

    Regards,
    Richard

     

    Just saw that the message was already answered a few minutes before. Message was edited by: Richard Hammerl

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago in reply to Richard_H

    I study the ULP Bill of Materials and i don't know what this line is exactly doing:

    sprintf(s, "%s%-*s", line ? " " : "", Width[i], a[i]);

    What about the "%s%-*s" line ? " " : "" part of the line?

    I would be grateful if you could explain it to me that how is it works.

    I can help a bit here, the "? :" is called a ternary operator. It's a programmer's shorthand for an if statement (if true, do something, else do something else)
    The format is  <test> ? <if true> : <if false>
    sprintf is a string formatting function, s is the string, "%s%-*s" is the format for the string operation.
    The ternary operator is returning a space if "line" is true, or nothing if "line" is false.
    So at a glance, this line inserts/writes or removes a space into the string if "line" is true.

     

    Hope this helps! I don't know how it's used in the context of the ULP, but this may give you a good idea to start from.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Richard_H
    Richard_H over 14 years ago in reply to e14 Contributor

    Hi All,

                 I have  downloaded new eagle V6 free version, and I tried one of my exisisting  design  which is done in 5.9.0 , But afterwards I am not able to open  SCH & BRD  in 5.9 .... Any idea how to do it...?

    andyhunti wrote:

     

    I don't think that's possible... 6 isn't backwards compatible. Eagle's never been very good at that. Hope you've got a backup.

    http://www.element14.com/community/thread/15752?tstart=0

    Talking about backup files. There should be files for boards with the extension .b#1 up to .b#9 or the same for schematics with extension .s#1.... .s#9. You have to rename the appropriate files so that they have a valid .brd or .sch extension.

     

    Regards,

    Richard

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago in reply to e14 Contributor

    I don't think that's possible... 6 isn't backwards compatible. Eagle's never been very good at that. Hope you've got a backup.

    http://www.element14.com/community/thread/15752?tstart=0

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago

    Hi All,

                 I have downloaded new eagle V6 free version, and I tried one of my exisisting design  which is done in 5.9.0 , But afterwards I am not able to open SCH & BRD  in 5.9 .... Any idea how to do it...?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 14 years ago

    Hi Richard,

     

    I study the ULP Bill of Materials and i don't know what this line is exactly doing:

    sprintf(s, "%s%-*s", line ? " " : "", Width[i], a[i]);

    What about the "%s%-*s" line ? " " : "" part of the line?

    I would be grateful if you could explain it to me that how is it works.

     

    Thanks.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Richard_H
    Richard_H over 14 years ago in reply to e14 Contributor
    One problem I'm having is that the drc returns overlap errors everywhere I use rectangles.  I also have the problem of connecting signals of different names (sub grounds) to one point - it returns overlap errors.  Is there any way to give a rectangle a name or otherwise make it a part of a network so the drc won't return an error?

     

     

    Hi Mike,

     

    RECTs can't be connected to signals. They are non-electical objects. You could use POLYGONs instead. If you want to connect two different signals (with different names) you have to overlap two wires or two polygons....

    This will always bring up a DRC error message.

     

    Regards,

    Richard

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