--
You received this message because you are subscribed to the Google Groups "KiCad Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to devlist+u...@kicad.org.
To view this discussion visit https://groups.google.com/a/kicad.org/d/msgid/devlist/aa1e18bf-18cf-4542-9dbe-14234e3371cbn%40kicad.org.
To view this discussion visit https://groups.google.com/a/kicad.org/d/msgid/devlist/76e89244-704b-42e6-a2ab-7a24982f6510n%40kicad.org.
- There is no clean way to support two different schematics that use arrange the pins of, say, a microcontroller differently. Any method you choose with the current design loses the ability to update either component, schematic, or library at some level.


> If the answer is: modify the http lib or the std lib, then I think that's a gap. If the answer is: make your project local symbol, but it can't inherit from the httplib, then I think that's a gap.
Not quite either of the above.
1) Copy the part into a shared global library (not a project library) that is linked to your HTTP lib2) Modify the HTTP lib
One idea with using a HTTP or database library is to get *reproducible* results on multiple different computers. You can't do that by saying you want to allow arbitrary changes to the pin layout of the symbol without touching the library. If you insist on changing the pin layout of your symbols per-project, the way to do it that doesn't result in broken library links is to just put multiple symbols into your library.
Yes, the point of the HTTP/DB library is to get reproducible results. And that is why, if it is necessary to modify the symbol, it's still valuable to get updates to the parameters.
I think it would be hard to argue that moving some pins around for better schematic flow is not a common or valid need.
Keeping the system/global libraries standard keeps the schematic portable.
Requiring the user to copy a part into a shared global library make a schematic less portable, and is a strain on a typical user
Allowing a local-to-schematic modified part that follows parameter updates to the standard library part results in a portable schematic, and is easy for users to understand.
There is already a mechansism that allows the user to create a new part and inherit updates to the symbol. I'm arguing that the inverse, allowing the user to inherit updates to the httplib/dblib parameters is equally valuable, and in many cases more so.