lachlanA / eagle-to-kicad

Eagle SCH/LIB to KiCad SCH/LIB ULP conversion script
GNU General Public License v2.0
423 stars 58 forks source link

error message #18

Open jonhp opened 7 years ago

jonhp commented 7 years ago

image

1 - don't know what the error message is trying to tell me. 2 - note 1: "chance" should be "changed".

lachlanA commented 7 years ago

KiCad dose not like reference's with out numbers, where as Eagle will allow reference's with out numbers. for example, R and R1 are both valid in Eagle, but in KiCad only R1 is valid so the script renumbers the parts, that's what it's telling you about, most case's it should be ok, But if your using R in your BOM parts list, the numbers wont match what you had in Eagle, which will make for problems building the boards if you were expecting exactly the same numbers, as Eagle.

Lachlan