Problem
ERC reports 221 warnings:
The current configuration does not include the footprint library 'TIS_Footprints'
Every component references footprints from TIS_Footprints, but the project's fp-lib-table names the library Library:
(fp_lib_table
(version 7)
(lib (name "Library")(type "KiCad")(uri "\${KIPRJMOD}/Library.pretty")(options "")(descr ""))
)
The local Library.pretty directory exists and contains all 33 referenced footprints.
Root Cause
Commit 78fe9e7 added local copies of the libraries but renamed them from TIS_Footprints to Library. The schematic symbols still reference the old name.
Implementation
Rename the library entry in TAPRX-888 KiCad/fp-lib-table:
- (lib (name "Library")(type "KiCad")(uri "\${KIPRJMOD}/Library.pretty")(options "")(descr ""))
+ (lib (name "TIS_Footprints")(type "KiCad")(uri "\${KIPRJMOD}/Library.pretty")(options "")(descr ""))
The physical directory (Library.pretty) stays the same — only the logical name changes to match what the schematic symbols expect.
This clears all 221 ERC warnings.
Problem
ERC reports 221 warnings:
Every component references footprints from
TIS_Footprints, but the project'sfp-lib-tablenames the libraryLibrary:The local
Library.prettydirectory exists and contains all 33 referenced footprints.Root Cause
Commit
78fe9e7added local copies of the libraries but renamed them fromTIS_FootprintstoLibrary. The schematic symbols still reference the old name.Implementation
Rename the library entry in
TAPRX-888 KiCad/fp-lib-table:The physical directory (
Library.pretty) stays the same — only the logical name changes to match what the schematic symbols expect.This clears all 221 ERC warnings.