element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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 Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • 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
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • 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) Power and Supply Pin Use on Schematics
  • 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 Verified Answer
  • Replies 6 replies
  • Answers 2 answers
  • Subscribers 175 subscribers
  • Views 5123 views
  • Users 0 members are here
  • pins
  • supply
  • connections
  • power
Related

Power and Supply Pin Use on Schematics

Former Member
Former Member over 11 years ago

I've created a schematic design for a digital circuit with an isolated RS422 section. I'm using an isolating power supply for the transceivers and bringing the data lines onto the main board using an optoisolator. From that point, the rest of the board has common power and grounds. I'm using polygons with different names for GND on each section.

 

I'm running into 2 distinct problems.

1) I need to keep the isolated VCC and GND nets separated on the schematic. I'm having some sucess with this as I am using different net names (i.e. GND and -VOUT)

2) Power and Supply pins are more challenging. Some IC's have VCC, others VDD. The isolated section I've given the net name of +VOUT. All are at +5v.

 

When I run ERC, I get warnings of interconnected nets. I believe I'm using Power and Supply pins incorrectly. Simple case - how do I properly connect +5v to VCC and to VDD on the same net?

 

imageimageimage

Slight mess! Yes, VDD has no net as it will generate more errors if I connect it to +5v.

 

I appreciate your time and suggestions!

 

Warm regards.

  • Sign in to reply
  • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago

    On 09/30/2013 11:27 AM, David Kanazawa wrote:

    When I run ERC, I get warnings of interconnected nets. I believe I'm

    using Power and Supply pins incorrectly. Simple case - how do I properly

    connect +5v to VCC and to VDD on the same net?

    It is a warning. Either ignore it or fix the component to match your

    power and ground names. This is a check that helps simple circuits of

    beginners and a nuance with complex circuits.

    Paul

     

     

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

    On 09/30/2013 11:27 AM, David Kanazawa wrote:

    ...

    I'm running into 2 distinct problems.

    1) I need to keep the isolated VCC and GND nets separated on the

    schematic. I'm having some sucess with this as I am using different net

    names (i.e. GND and -VOUT)

     

    Use the supply symbols in supply.lbr or supply2.lbr for each of your

    different nets.  i.e. GND, GND1, GND2, etc.

    Eagle will treat these, as it should, as separate nets.  To tie them

    together, use the SHORT device in the attached shorts.lbr.  This is

    merely two pads that overlap each other.  This will produce a DRC error,

    but it can be approved to prevent from being a nuisance.

     

    2) Power and Supply pins are more challenging. Some IC's have VCC,

    others VDD. The isolated section I've given the net name of +VOUT. All

    are at +5v.

     

    You can use the supply symbol +5V from the supply2 library to name the

    net (it conveys more information to the reader).

    When I run ERC, I get warnings of interconnected nets. I believe I'm

    using Power and Supply pins incorrectly. Simple case - how do I properly

    connect +5v to VCC and to VDD on the same net?

    ERC warnings of the type "VCC connected to +5V" can be approved.  All it

    means is that the name of the power pin does not match the name of the

    net to which it's connected.

     

    If you want to connect separate nets, use the SHORT device.

     

    I do this quite often to separate different grounds such as analog

    ground, a noisy high-power ground, and a logic ground.  I want to tie

    them all together eventually, but keep them separate as long as

    possible.  So all the shorts are placed close to the battery connector.

    Since it's an on-board component, I take all shorts out of the BOM.

     

    HTH,

        - Chuck

     

     

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

    Paul and Chuck,

     

    Thanks very much for taking the time to help (re)explain this issue. It's very helpful to have the concrete examples of devices, the error messages and result of "approving" errors. It would not have occurred to me to search for the SHORT device, so that was particularly useful. I'll give this a go and hopefully it will allow me to complete this section of schematic layout. Nice touch on removing the SHORT from the BOM.

     

    One side note - I'm not clear on why it's necessary to even have the supply and power connections laid out. Is it for clarity of which voltage is being applied to a particular net such as defining the VCC voltage?

     

    And on to the next topic - "Polygons May Have Fallen Apart".

     

    Thank you for helping me understand how to use these tools!

     

    David K.

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

    On 10/01/2013 01:29 PM, David Kanazawa wrote:

    One side note - I'm not clear on why it's necessary to even have the

    supply and power connections laid out. Is it for clarity of which

    voltage is being applied to a particular net such as defining the VCC

    voltage?

     

    VCC, of course, stems from the collector voltage, just as VDD refers to

    a drain voltage.  Consider the case where a SUPPLY device called VDD is

    attached to a POWER pin on an IC named VDD.  This certainly avoids the

    DRC warning.

     

    Putting on my philosopher's hat for a moment, the purpose of a schematic

    is to convey the design of a circuit to a reader.  Some may call it art,

    and other may call it the essence of the circuit.  Whatever one chooses

    to call it, a schematic should convey what the circuit is about, and not

    necessarily how the design is manifested on a PCB.

     

    Back to engineering...  So, when a reader sees that a VDD supply is

    connected to VDD pin, it's a real "duh" moment.  The next question is

    "what is VDD?".  So, instead of using a SUPPLY device called VDD,

    consider using a SUPPLY device that conveys what the voltage on that net

    should be.  Something like "5V", "3.3V", or "+15V".  This serves a

    dual purpose in that it immediately conveys to the reader what VDD

    should be, and it produces a DRC warning allowing the designer to verify

    (by approving the error) that the proper voltage supply should indeed be

    connected to VDD of that particular IC.

     

    As far as leaving the power pins off of a schematic, I would recommend

    against it for the simple reason that it hides information from the

    reader.  Many IC's have power and ground pins on the corner (7 and 14,

    or 8 and 16); others have power and ground midway down the sides; and

    QFP's have multiple power pins scattered wherever they're needed.  In

    cases where the power pins are a separate gate from the main schematic

    symbol, I usually stuff them down in a corner of my schematic along with

    a bypass capacitor.  But keep them on the schematic

     

    I would recommend using SHORT devices sparingly in that it, in part,

    defeats the purpose of the DRC.  For example, if one were to connect a

    +5V supply to a GND supply through a SHORT, Eagle would not complain one

    bit.  But as soon as you applied power, your board would certainly

    complain with a puff of smoke.

     

    HTH,

        - Chuck

     

     

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

    David Kanazawa wrote:

     

    Paul and Chuck,

     

     

    One side note - I'm not clear on why it's necessary to even have the

    supply and power connections laid out. Is it for clarity of which

    voltage is being applied to a particular net such as defining the VCC

    voltage?

     

     

    One thing to watch out for is that VCC and VDD, for example, are used

    interchangeably in the standard libraries to mark power on both +5V parts

    and +3.3V parts. If you bring in a part that uses VDD for +5V, and hook that

    power pin up to the 'VDD' supply symbol from the SUPPLY2 library, and

    connect that to a 5V source, everything is well. That is, until you bring in

    another library part that runs on +3.3V but also uses 'VDD' as the power pin

    label. Eagle will nicely and quietly hook that pin up to your +5V VDD net

    automatically. If this is a normally-hidden invokable power symbol, you may

    never realize the problem until you power the board for the first time. If

    you invoke this power symbol, not only is it easier for someone else to read

    your schematic, but you might also spot the issue (ERC certainly will) when

    you attempt to connect your +3.3V supply symbol to the VDD pin.

     

    This is why I always invoke and hook up the power symbols. It's also another

    good reason to never use library components directly, but to copy them to

    personal libraries and modify them if necessary, for example, to use a

    consistent power rail naming scheme.

     

    Bob

     

     

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

    All,

     

    Thanks very much for the detailed explanations and suggestions. These responses go well beyond what Eagle has written up in the manual as to "What needs to be done and this is how to do it" approach. The "Why" and history are very insightful as to the need for this Power and Supply definition. I hope others will benefit from what you've taken the time to explain.

     

    Thank you so much,

    David

    • 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