Ergogen: Fix DRC issues in KiCad footprints

This commit is contained in:
Lexi / Zoe 2024-08-03 23:29:11 +02:00
parent 671f85b13e
commit f438b19352
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
5 changed files with 11 additions and 6 deletions

View file

@ -107,7 +107,7 @@ module.exports = {
for (let i = 0; i < PINS_PER_SIDE; i++) {
pin_pad_body += `
(pad ${i + offset} thru_hole circle (at ${sign}8.89 ${pin_pos_y(i)} 0)
(size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) ${p[pin_names[i]]}
(size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.Mask) ${p[pin_names[i]]}
)`;
}
return pin_pad_body;