ErrType(3): Pin connected to some others pins but no pin to drive it

Additional reading about pin types in general: Electrical type of schematic symbol pins (KiCad 4 and KiCad 5)
A good explanation about power symbols can be found in this stackexchange answer by @Seth_h

KiCad does check if every component is connected to supply lines (*1) as a missing supply is a common mistake to make. Getting the error “ErrType(3): Pin connected to some others pins but no pin to drive it” means that KiCad thinks that some supply pin is not properly connected. Either because there is a missing connection or because KiCad has not been told where the circuit is supplied.

The later is the most likely cause for new users. This means the problem is typically easily solved by adding a “PWR_FLAG” symbol to the schematic. An examination of the Electrical Type assigned to the symbols pins will explain why KiCad has PWR_FLAGs.

Here is a simple schematic using two devices without the PWR_FLAG symbol that passes the ERC without error.

PF_Batt
Here are the Pin Types for the two devices:


PW_LED

From these, the next question then becomes, “Where are the Power inputs”?
The ERC uses the VCC and GND symbols as “inputs”.
3

PF_GND

There is a very simple reason for this if even at first this does not seem to make sense. Schematics are often drawn with multiple instances of the same voltage sources and ground points.

In the above schematic, with the +3.3V and GND symbols pins designated as “inputs” there is no conflict in the ERC. Note that there would have been a conflict if the 3.3V symbols pins were designated as “outputs”. This is shown in the following example:

The most common issue new KiCad users have is the relationship between connectors, devices, and PWR_FLAGs.


If the KiCad library symbol for the regulator is correct, it should have it’s pins Electrical Type assigned as shown in the following diagram:

PF_Reg

In the very first example schematic, the battery was clearly a Power “output”. There were no ERC issues because the battery “output” was applied to other symbol “inputs”. In this second schematic, it is not clear that the Conn_01x02 is an “output” device. The library symbol could be changed to re-assign the pins as “outputs” and this second example schematic would pass the ERC; until the same Conn_01x02 symbol was used in a second instance and connected to pin 3 of the above regulator.

KiCad has a rather unique tool to solve these ERC issues between symbols. KiCad’s creative solution is the PWR_FLAG! (The PWR_FLAG is found in the power library supplied with kicad. Use the “place power port” dialog and type PWR_FLAG into the search field. Place it like any other power symbol.)

PF_Power_Flag

Adding the PWR_FLAG to the schematic and connecting separate ones to the voltage source symbols and ground points will create a schematic that is ERC compliant.

The PWR_FLAG tool allows KiCad to retain it’s flexibility in design with generic schematic library symbols, and still provide a quality ERC.

NOTE: Although both flags have the same text, “PWR_FLAG”, they are NOT connected together as they are internally assigned a different FLAG/NET_ NAME when they are placed.


If you do not want to use kicad supplied symbols at all then you can easily create your own PWR_FLAG symbol. It is nothing else then a symbol with one pin that has the type “power output”. In addition its reference designator starts with “#” to ensure kicad does not try to connect it to a footprint. Enabling “this is a power symbol” will ensure that it is shown in the “add power port” dialog.


Footnotes:
[1]: KiCad can only detect a missing supply if the supply pins have been given the electrical type “power in”. Luckily power symbols (power labels or power ports) are defined as power input and therefore require nets that use this symbol to be powered.

11 Likes
Pin connected to other pins, but not driven by any other pin
What is the use of the power flags
ErrType(3):Pin connected to some other pins but no pin to drive it
Assigning Footprints & ERC
Nd Help with Warning
Some components are not connected
The most basic schematic doesn't not pass ERC check
Power pin confusion
New to this error type 3
Component appears several times in BOM
ERC error in EEschema
[SOLVED] How to best put hardware mount points on a schematic
Error pin not driven error : Use of flags
ErrType : Pin connected to other pins, but not driven by any pin
ERC error question
Getting random ERC errors
Pin connected to other pins, but not driven by any pin
Board is finished, massive list of ERC errors
Eeschema ERC frustrations
Question about PowerFlag
Question about PowerFlag
All VCC become GND
Before giving up on Kicad one last attempt: ERC misery
ERC error with simple battery-LED circuit
What am i doing wrong
Hide PWR_FLAG when printing
Hide PWR_FLAG when printing
What am I doing wrong in Eeschema?
First Schematic - Looking for Pointers
Power Flags for Different Grounds and Supplies?
Can't save created symbol
Missing airwire in pcbnew - something strange happened! - cannot ignore part number suffixes
DRC error in hierarchical sheet
ERC with symbol providing multiple ground outputs
ERC Errors - don't understand why
Arduino Scoreboard (upgrading)
[Solved] Multiple ERC errors for simple schematic
ECR Warning on GND pin
ERC not showing unconnected pin?
Inputs in schematic
ERC: Pin connected to some others pins but no pin to drive it
Problem understanding ERC output
Electrical rules check ( error )
Unconnected wires in Power
Musical chairs with Electrical Rules Ceck
ERC Checker problems with power line
Connection Error
Pin not driven warning, only on some ICs
Question about power flags with microcontroller and charge pump
Very first KiCad project, please check my Gerbers
Error: circuit not parsed
Unable to understand errors when ERC
Seeking help with project - a simple desktop trinket
Pin not driven - yet connected
Why Such a Common ERC Error?
Pin connected to some others pins but no pin to drive it [for VSS and VDD]
It's connected but: pin-connected-to-other-pins-but-not-driven-by-any-other-pin
[Solved] Netlist warning on power pins in a sub-schematic
ERC on imported schematic errors on power connectors
Error-input power pin is not driven by output power pin
Power Pin Not Driven problem
ERC flags one of several identically connected components
Power pin not driven
NE555P PWM generator: input power pin not driven by output power pin
(Start Here) Frequently Asked Questions
Schematic DRC shows no connection but it's there?
Connection Error
Confusing warning from Design Rules Check...help?
I get ERC error "pin not driven" what should I do?
Ground "errors"?
ERC giving an error but I can't tell why
How to solve this problem
Tutorial: Introduction to PCB design with KiCad version 5.1 (Getting Started)
Not driven errors
No footprint assigned
Unable to connect Wire to Pins
PIN1 (power input) of component of #PWR0101 is not driven (net 1)

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.