KiCad PCB EDA Suite
Loading...
Searching...
No Matches
layer_id.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <layer_ids.h>
21#include <magic_enum.hpp>
22#include <wx/translation.h>
23
31wxString LayerName( int aLayer )
32{
33 switch( aLayer )
34 {
35 // PCB_LAYER_ID
36 case UNDEFINED_LAYER: return _( "undefined" );
37
38 // Copper
39 case PCB_LAYER_ID::F_Cu: return wxT( "F.Cu" );
40 case PCB_LAYER_ID::In1_Cu: return wxT( "In1.Cu" );
41 case PCB_LAYER_ID::In2_Cu: return wxT( "In2.Cu" );
42 case PCB_LAYER_ID::In3_Cu: return wxT( "In3.Cu" );
43 case PCB_LAYER_ID::In4_Cu: return wxT( "In4.Cu" );
44 case PCB_LAYER_ID::In5_Cu: return wxT( "In5.Cu" );
45 case PCB_LAYER_ID::In6_Cu: return wxT( "In6.Cu" );
46 case PCB_LAYER_ID::In7_Cu: return wxT( "In7.Cu" );
47 case PCB_LAYER_ID::In8_Cu: return wxT( "In8.Cu" );
48 case PCB_LAYER_ID::In9_Cu: return wxT( "In9.Cu" );
49 case PCB_LAYER_ID::In10_Cu: return wxT( "In10.Cu" );
50 case PCB_LAYER_ID::In11_Cu: return wxT( "In11.Cu" );
51 case PCB_LAYER_ID::In12_Cu: return wxT( "In12.Cu" );
52 case PCB_LAYER_ID::In13_Cu: return wxT( "In13.Cu" );
53 case PCB_LAYER_ID::In14_Cu: return wxT( "In14.Cu" );
54 case PCB_LAYER_ID::In15_Cu: return wxT( "In15.Cu" );
55 case PCB_LAYER_ID::In16_Cu: return wxT( "In16.Cu" );
56 case PCB_LAYER_ID::In17_Cu: return wxT( "In17.Cu" );
57 case PCB_LAYER_ID::In18_Cu: return wxT( "In18.Cu" );
58 case PCB_LAYER_ID::In19_Cu: return wxT( "In19.Cu" );
59 case PCB_LAYER_ID::In20_Cu: return wxT( "In20.Cu" );
60 case PCB_LAYER_ID::In21_Cu: return wxT( "In21.Cu" );
61 case PCB_LAYER_ID::In22_Cu: return wxT( "In22.Cu" );
62 case PCB_LAYER_ID::In23_Cu: return wxT( "In23.Cu" );
63 case PCB_LAYER_ID::In24_Cu: return wxT( "In24.Cu" );
64 case PCB_LAYER_ID::In25_Cu: return wxT( "In25.Cu" );
65 case PCB_LAYER_ID::In26_Cu: return wxT( "In26.Cu" );
66 case PCB_LAYER_ID::In27_Cu: return wxT( "In27.Cu" );
67 case PCB_LAYER_ID::In28_Cu: return wxT( "In28.Cu" );
68 case PCB_LAYER_ID::In29_Cu: return wxT( "In29.Cu" );
69 case PCB_LAYER_ID::In30_Cu: return wxT( "In30.Cu" );
70 case PCB_LAYER_ID::B_Cu: return wxT( "B.Cu" );
71
72 // Technicals
73 case PCB_LAYER_ID::B_Adhes: return wxT( "B.Adhesive" );
74 case PCB_LAYER_ID::F_Adhes: return wxT( "F.Adhesive" );
75 case PCB_LAYER_ID::B_Paste: return wxT( "B.Paste" );
76 case PCB_LAYER_ID::F_Paste: return wxT( "F.Paste" );
77 case PCB_LAYER_ID::B_SilkS: return wxT( "B.Silkscreen" );
78 case PCB_LAYER_ID::F_SilkS: return wxT( "F.Silkscreen" );
79 case PCB_LAYER_ID::B_Mask: return wxT( "B.Mask" );
80 case PCB_LAYER_ID::F_Mask: return wxT( "F.Mask" );
81
82 // Users
83 case PCB_LAYER_ID::Dwgs_User: return wxT( "User.Drawings" );
84 case PCB_LAYER_ID::Cmts_User: return wxT( "User.Comments" );
85 case PCB_LAYER_ID::Eco1_User: return wxT( "User.Eco1" );
86 case PCB_LAYER_ID::Eco2_User: return wxT( "User.Eco2" );
87 case PCB_LAYER_ID::Edge_Cuts: return wxT( "Edge.Cuts" );
88 case PCB_LAYER_ID::Margin: return wxT( "Margin" );
89
90 // Footprint
91 case PCB_LAYER_ID::F_CrtYd: return wxT( "F.Courtyard" );
92 case PCB_LAYER_ID::B_CrtYd: return wxT( "B.Courtyard" );
93 case PCB_LAYER_ID::F_Fab: return wxT( "F.Fab" );
94 case PCB_LAYER_ID::B_Fab: return wxT( "B.Fab" );
95
96 // User definable layers.
97 case PCB_LAYER_ID::User_1: return wxT( "User.1" );
98 case PCB_LAYER_ID::User_2: return wxT( "User.2" );
99 case PCB_LAYER_ID::User_3: return wxT( "User.3" );
100 case PCB_LAYER_ID::User_4: return wxT( "User.4" );
101 case PCB_LAYER_ID::User_5: return wxT( "User.5" );
102 case PCB_LAYER_ID::User_6: return wxT( "User.6" );
103 case PCB_LAYER_ID::User_7: return wxT( "User.7" );
104 case PCB_LAYER_ID::User_8: return wxT( "User.8" );
105 case PCB_LAYER_ID::User_9: return wxT( "User.9" );
106 case 57: return wxT( "User.10" );
107 case 59: return wxT( "User.11" );
108 case 61: return wxT( "User.12" );
109 case 63: return wxT( "User.13" );
110
111 // Rescue
112 case PCB_LAYER_ID::Rescue: return _( "Rescue" );
113
114 // SCH_LAYER_ID
115
116 case LAYER_WIRE: return _( "Wires" );
117 case LAYER_BUS: return _( "Buses" );
118 case LAYER_BUS_JUNCTION: return _( "Bus junctions" );
119 case LAYER_JUNCTION: return _( "Junctions" );
120 case LAYER_LOCLABEL: return _( "Labels" );
121 case LAYER_GLOBLABEL: return _( "Global labels" );
122 case LAYER_HIERLABEL: return _( "Hierarchical labels" );
123 case LAYER_PINNUM: return _( "Pin numbers" );
124 case LAYER_PINNAM: return _( "Pin names" );
125 case LAYER_REFERENCEPART: return _( "Symbol references" );
126 case LAYER_VALUEPART: return _( "Symbol values" );
127 case LAYER_FIELDS: return _( "Symbol fields" );
128 case LAYER_INTERSHEET_REFS: return _( "Sheet references" );
129 case LAYER_NETCLASS_REFS: return _( "Net class references" );
130 case LAYER_RULE_AREAS: return _( "Rule areas" );
131 case LAYER_DEVICE: return _( "Symbol body outlines" );
132 case LAYER_DEVICE_BACKGROUND: return _( "Symbol body fills" );
133 case LAYER_NOTES: return _( "Schematic text && graphics" );
134 case LAYER_PRIVATE_NOTES: return _( "Symbol private text && graphics" );
135 case LAYER_NOTES_BACKGROUND: return _( "Schematic text && graphics backgrounds" );
136 case LAYER_PIN: return _( "Pins" );
137 case LAYER_SHEET: return _( "Sheet borders" );
138 case LAYER_SHEET_BACKGROUND: return _( "Sheet backgrounds" );
139 case LAYER_SHEETNAME: return _( "Sheet names" );
140 case LAYER_SHEETFIELDS: return _( "Sheet fields" );
141 case LAYER_SHEETFILENAME: return _( "Sheet file names" );
142 case LAYER_SHEETLABEL: return _( "Sheet pins" );
143 case LAYER_NOCONNECT: return _( "No-connect symbols" );
144 case LAYER_DNP_MARKER: return _( "DNP markers" );
145 case LAYER_EXCLUDED_FROM_SIM: return _( "Excluded-from-simulation markers" );
146 case LAYER_ERC_WARN: return _( "ERC warnings" );
147 case LAYER_ERC_ERR: return _( "ERC errors" );
148 case LAYER_ERC_EXCLUSION: return _( "ERC exclusions" );
149 case LAYER_SCHEMATIC_ANCHOR: return _( "Anchors" );
150 case LAYER_SCHEMATIC_AUX_ITEMS: return _( "Helper items" );
151 case LAYER_SCHEMATIC_GRID: return _( "Grid" );
152 case LAYER_SCHEMATIC_GRID_AXES: return _( "Axes" );
153 case LAYER_SCHEMATIC_BACKGROUND: return _( "Background" );
154 case LAYER_SCHEMATIC_CURSOR: return _( "Cursor" );
155 case LAYER_HOVERED: return _( "Hovered items" );
156 case LAYER_BRIGHTENED: return _( "Highlighted items" );
157 case LAYER_HIDDEN: return _( "Hidden items" );
158 case LAYER_SELECTION_SHADOWS: return _( "Selection highlight" );
159 case LAYER_NET_COLOR_HIGHLIGHT: return _( "Net color highlight" );
160 case LAYER_SCHEMATIC_DRAWINGSHEET: return _( "Drawing sheet" );
161 case LAYER_SCHEMATIC_PAGE_LIMITS: return _( "Page limits" );
162 case LAYER_OP_VOLTAGES: return _( "Operating point voltages" );
163 case LAYER_OP_CURRENTS: return _( "Operating point currents" );
164
165 // GAL_LAYER_ID
166
167 case LAYER_FOOTPRINTS_FR: return _( "Footprints front" );
168 case LAYER_FOOTPRINTS_BK: return _( "Footprints back" );
169 case LAYER_FP_VALUES: return _( "Values" );
170 case LAYER_FP_REFERENCES: return _( "Reference designators" );
171 case LAYER_FP_TEXT: return _( "Footprint text" );
172 case LAYER_TRACKS: return _( "Tracks" );
173 case LAYER_VIA_THROUGH: return _( "Through vias" );
174 case LAYER_VIA_BBLIND: return _( "Blind/Buried vias" );
175 case LAYER_VIA_MICROVIA: return _( "Micro-vias" );
176 case LAYER_VIA_HOLES: return _( "Via holes" );
177 case LAYER_VIA_HOLEWALLS: return _( "Via hole walls" );
178 case LAYER_PAD_PLATEDHOLES: return _( "Plated holes" );
179 case LAYER_PAD_HOLEWALLS: return _( "Plated hole walls" );
180 case LAYER_NON_PLATEDHOLES: return _( "Non-plated holes" );
181 case LAYER_RATSNEST: return _( "Ratsnest" );
182 case LAYER_DRC_WARNING: return _( "DRC warnings" );
183 case LAYER_DRC_ERROR: return _( "DRC errors" );
184 case LAYER_DRC_SHAPE1: return _( "DRC shape 1" );
185 case LAYER_DRC_SHAPE2: return _( "DRC shape 2" );
186 case LAYER_DRC_EXCLUSION: return _( "DRC exclusions" );
187 case LAYER_MARKER_SHADOWS: return _( "DRC marker shadows" );
188 case LAYER_ANCHOR: return _( "Anchors" );
189 case LAYER_DRAWINGSHEET: return _( "Drawing sheet" );
190 case LAYER_PAGE_LIMITS: return _( "Page limits" );
191 case LAYER_CURSOR: return _( "Cursor" );
192 case LAYER_AUX_ITEMS: return _( "Helper items" );
193 case LAYER_GRID: return _( "Grid" );
194 case LAYER_GRID_AXES: return _( "Grid axes" );
195 case LAYER_PCB_BACKGROUND: return _( "Background" );
196 case LAYER_SELECT_OVERLAY: return _( "Selection highlight" );
197 case LAYER_LOCKED_ITEM_SHADOW: return _( "Locked item shadow" );
198 case LAYER_CONFLICTS_SHADOW: return _( "Courtyard collision shadow" );
199 case NETNAMES_LAYER_ID_START: return _( "Track net names" );
200 case LAYER_PAD_NETNAMES: return _( "Pad net names" );
201
202 default:
203 wxCHECK_MSG( false, wxEmptyString, wxString::Format( "Unknown layer ID %d", aLayer ) );
204 }
205}
206
207
208PCB_LAYER_ID FlipLayer( PCB_LAYER_ID aLayerId, int aCopperLayersCount )
209{
210 switch( aLayerId )
211 {
212 case B_Cu: return F_Cu;
213 case F_Cu: return B_Cu;
214
215 case B_SilkS: return F_SilkS;
216 case F_SilkS: return B_SilkS;
217
218 case B_Adhes: return F_Adhes;
219 case F_Adhes: return B_Adhes;
220
221 case B_Mask: return F_Mask;
222 case F_Mask: return B_Mask;
223
224 case B_Paste: return F_Paste;
225 case F_Paste: return B_Paste;
226
227 case B_CrtYd: return F_CrtYd;
228 case F_CrtYd: return B_CrtYd;
229
230 case B_Fab: return F_Fab;
231 case F_Fab: return B_Fab;
232
233 default: // change internal layer if aCopperLayersCount is >= 4
234 if( IsCopperLayer( aLayerId ) && aCopperLayersCount >= 4 )
235 {
236 // internal copper layers count is aCopperLayersCount-2
237 PCB_LAYER_ID fliplayer = PCB_LAYER_ID(aCopperLayersCount - 2 - ( aLayerId - In1_Cu ) );
238 // Ensure fliplayer has a value which does not crash Pcbnew:
239 if( fliplayer < F_Cu )
240 fliplayer = F_Cu;
241
242 if( fliplayer > B_Cu )
243 fliplayer = B_Cu;
244
245 return fliplayer;
246 }
247
248 // No change for the other layers
249 return aLayerId;
250 }
251}
252
253
255{
256 switch( aLegacyId )
257 {
258 case 0: return F_Cu;
259 case 31: return B_Cu;
260
261 default:
262 if( aLegacyId < 0 )
263 return magic_enum::enum_cast<PCB_LAYER_ID>( aLegacyId ).value_or( UNDEFINED_LAYER );
264
265 if( aLegacyId < 31 )
266 return static_cast<PCB_LAYER_ID>( In1_Cu + ( aLegacyId - 1 ) * 2 );
267
268 switch( aLegacyId )
269 {
270 case 32: return B_Adhes;
271 case 33: return F_Adhes;
272 case 34: return B_Paste;
273 case 35: return F_Paste;
274 case 36: return B_SilkS;
275 case 37: return F_SilkS;
276 case 38: return B_Mask;
277 case 39: return F_Mask;
278 case 40: return Dwgs_User;
279 case 41: return Cmts_User;
280 case 42: return Eco1_User;
281 case 43: return Eco2_User;
282 case 44: return Edge_Cuts;
283 case 45: return Margin;
284 case 46: return B_CrtYd;
285 case 47: return F_CrtYd;
286 case 48: return B_Fab;
287 case 49: return F_Fab;
288 case 50: return User_1;
289 case 51: return User_2;
290 case 52: return User_3;
291 case 53: return User_4;
292 case 54: return User_5;
293 case 55: return User_6;
294 case 56: return User_7;
295 case 57: return User_8;
296 case 58: return User_9;
297 case 59: return Rescue;
298 default: return UNDEFINED_LAYER;
299 }
300 }
301}
#define _(s)
PCB_LAYER_ID BoardLayerFromLegacyId(int aLegacyId)
Retrieves a layer ID from an integer converted from a legacy (pre-V9) enum value.
Definition: layer_id.cpp:254
PCB_LAYER_ID FlipLayer(PCB_LAYER_ID aLayerId, int aCopperLayersCount)
Definition: layer_id.cpp:208
wxString LayerName(int aLayer)
Returns the default display name for a given layer.
Definition: layer_id.cpp:31
@ LAYER_PAD_NETNAMES
Definition: layer_ids.h:167
@ NETNAMES_LAYER_ID_START
Definition: layer_ids.h:157
bool IsCopperLayer(int aLayerId)
Tests whether a layer is a copper layer.
Definition: layer_ids.h:531
@ LAYER_GRID
Definition: layer_ids.h:206
@ LAYER_PAGE_LIMITS
color for drawing the page extents (visibility stored in PCBNEW_SETTINGS::m_ShowPageLimits)
Definition: layer_ids.h:253
@ LAYER_LOCKED_ITEM_SHADOW
shadow layer for locked items
Definition: layer_ids.h:240
@ LAYER_VIA_HOLEWALLS
Definition: layer_ids.h:235
@ LAYER_GRID_AXES
Definition: layer_ids.h:207
@ LAYER_CONFLICTS_SHADOW
shadow layer for items flagged conficting
Definition: layer_ids.h:242
@ LAYER_FOOTPRINTS_FR
show footprints on front
Definition: layer_ids.h:209
@ LAYER_DRC_SHAPE1
Custom shape for DRC marker.
Definition: layer_ids.h:245
@ LAYER_NON_PLATEDHOLES
handle color for not plated holes (holes, not pads)
Definition: layer_ids.h:198
@ LAYER_DRAWINGSHEET
drawingsheet frame and titleblock
Definition: layer_ids.h:218
@ LAYER_FP_REFERENCES
show footprints references (when texts are visible)
Definition: layer_ids.h:212
@ LAYER_DRC_EXCLUSION
layer for drc markers which have been individually excluded
Definition: layer_ids.h:237
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:221
@ LAYER_DRC_WARNING
layer for drc markers with SEVERITY_WARNING
Definition: layer_ids.h:236
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:215
@ LAYER_TRACKS
Definition: layer_ids.h:213
@ LAYER_CURSOR
PCB cursor.
Definition: layer_ids.h:222
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc)
Definition: layer_ids.h:223
@ LAYER_RATSNEST
Definition: layer_ids.h:205
@ LAYER_DRC_SHAPE2
Custom shape for DRC marker.
Definition: layer_ids.h:246
@ LAYER_FP_TEXT
Definition: layer_ids.h:199
@ LAYER_FOOTPRINTS_BK
show footprints on back
Definition: layer_ids.h:210
@ LAYER_ANCHOR
anchor of items having an anchor point (texts, footprints)
Definition: layer_ids.h:202
@ LAYER_MARKER_SHADOWS
shadows for drc markers
Definition: layer_ids.h:238
@ LAYER_VIA_HOLES
to draw via holes (pad holes do not use this layer)
Definition: layer_ids.h:216
@ LAYER_FP_VALUES
show footprints values (when texts are visible)
Definition: layer_ids.h:211
@ LAYER_VIA_MICROVIA
to draw micro vias
Definition: layer_ids.h:195
@ LAYER_SELECT_OVERLAY
currently selected items overlay
Definition: layer_ids.h:220
@ LAYER_VIA_THROUGH
to draw usual through hole vias
Definition: layer_ids.h:197
@ LAYER_DRC_ERROR
layer for drc markers with SEVERITY_ERROR
Definition: layer_ids.h:217
@ LAYER_VIA_BBLIND
to draw blind/buried vias
Definition: layer_ids.h:196
@ LAYER_PAD_HOLEWALLS
Definition: layer_ids.h:234
@ LAYER_SHEETNAME
Definition: layer_ids.h:376
@ LAYER_ERC_WARN
Definition: layer_ids.h:383
@ LAYER_SCHEMATIC_ANCHOR
Definition: layer_ids.h:402
@ LAYER_SHEETLABEL
Definition: layer_ids.h:379
@ LAYER_PINNUM
Definition: layer_ids.h:362
@ LAYER_RULE_AREAS
Definition: layer_ids.h:369
@ LAYER_DEVICE
Definition: layer_ids.h:370
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:388
@ LAYER_EXCLUDED_FROM_SIM
Definition: layer_ids.h:386
@ LAYER_BRIGHTENED
Definition: layer_ids.h:394
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:385
@ LAYER_HIDDEN
Definition: layer_ids.h:395
@ LAYER_HIERLABEL
Definition: layer_ids.h:361
@ LAYER_PINNAM
Definition: layer_ids.h:363
@ LAYER_PRIVATE_NOTES
Definition: layer_ids.h:372
@ LAYER_HOVERED
Definition: layer_ids.h:393
@ LAYER_GLOBLABEL
Definition: layer_ids.h:360
@ LAYER_WIRE
Definition: layer_ids.h:356
@ LAYER_NOTES
Definition: layer_ids.h:371
@ LAYER_NET_COLOR_HIGHLIGHT
Definition: layer_ids.h:396
@ LAYER_ERC_ERR
Definition: layer_ids.h:384
@ LAYER_PIN
Definition: layer_ids.h:374
@ LAYER_VALUEPART
Definition: layer_ids.h:365
@ LAYER_BUS
Definition: layer_ids.h:357
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:392
@ LAYER_FIELDS
Definition: layer_ids.h:366
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:387
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:398
@ LAYER_LOCLABEL
Definition: layer_ids.h:359
@ LAYER_JUNCTION
Definition: layer_ids.h:358
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:378
@ LAYER_SCHEMATIC_GRID_AXES
Definition: layer_ids.h:390
@ LAYER_REFERENCEPART
Definition: layer_ids.h:364
@ LAYER_NETCLASS_REFS
Definition: layer_ids.h:368
@ LAYER_NOTES_BACKGROUND
Definition: layer_ids.h:373
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:404
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:399
@ LAYER_SHEET
Definition: layer_ids.h:375
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:397
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:391
@ LAYER_SCHEMATIC_AUX_ITEMS
Definition: layer_ids.h:401
@ LAYER_INTERSHEET_REFS
Definition: layer_ids.h:367
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:403
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:377
@ LAYER_BUS_JUNCTION
Definition: layer_ids.h:400
@ LAYER_DNP_MARKER
Definition: layer_ids.h:382
@ LAYER_NOCONNECT
Definition: layer_ids.h:380
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:389
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ In22_Cu
Definition: layer_ids.h:87
@ In11_Cu
Definition: layer_ids.h:76
@ In29_Cu
Definition: layer_ids.h:94
@ In30_Cu
Definition: layer_ids.h:95
@ User_8
Definition: layer_ids.h:131
@ F_CrtYd
Definition: layer_ids.h:116
@ In17_Cu
Definition: layer_ids.h:82
@ B_Adhes
Definition: layer_ids.h:103
@ Edge_Cuts
Definition: layer_ids.h:112
@ Dwgs_User
Definition: layer_ids.h:107
@ F_Paste
Definition: layer_ids.h:104
@ In9_Cu
Definition: layer_ids.h:74
@ Cmts_User
Definition: layer_ids.h:108
@ User_6
Definition: layer_ids.h:129
@ User_7
Definition: layer_ids.h:130
@ In19_Cu
Definition: layer_ids.h:84
@ In7_Cu
Definition: layer_ids.h:72
@ In28_Cu
Definition: layer_ids.h:93
@ In26_Cu
Definition: layer_ids.h:91
@ F_Adhes
Definition: layer_ids.h:102
@ B_Mask
Definition: layer_ids.h:98
@ B_Cu
Definition: layer_ids.h:65
@ User_5
Definition: layer_ids.h:128
@ Eco1_User
Definition: layer_ids.h:109
@ F_Mask
Definition: layer_ids.h:97
@ In21_Cu
Definition: layer_ids.h:86
@ In23_Cu
Definition: layer_ids.h:88
@ B_Paste
Definition: layer_ids.h:105
@ In15_Cu
Definition: layer_ids.h:80
@ In2_Cu
Definition: layer_ids.h:67
@ User_9
Definition: layer_ids.h:132
@ F_Fab
Definition: layer_ids.h:119
@ In10_Cu
Definition: layer_ids.h:75
@ Margin
Definition: layer_ids.h:113
@ F_SilkS
Definition: layer_ids.h:100
@ In4_Cu
Definition: layer_ids.h:69
@ B_CrtYd
Definition: layer_ids.h:115
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
@ Eco2_User
Definition: layer_ids.h:110
@ In16_Cu
Definition: layer_ids.h:81
@ In24_Cu
Definition: layer_ids.h:89
@ In1_Cu
Definition: layer_ids.h:66
@ Rescue
Definition: layer_ids.h:121
@ User_3
Definition: layer_ids.h:126
@ User_1
Definition: layer_ids.h:124
@ B_SilkS
Definition: layer_ids.h:101
@ In13_Cu
Definition: layer_ids.h:78
@ User_4
Definition: layer_ids.h:127
@ In8_Cu
Definition: layer_ids.h:73
@ In14_Cu
Definition: layer_ids.h:79
@ User_2
Definition: layer_ids.h:125
@ In12_Cu
Definition: layer_ids.h:77
@ In27_Cu
Definition: layer_ids.h:92
@ In6_Cu
Definition: layer_ids.h:71
@ In5_Cu
Definition: layer_ids.h:70
@ In3_Cu
Definition: layer_ids.h:68
@ In20_Cu
Definition: layer_ids.h:85
@ F_Cu
Definition: layer_ids.h:64
@ In18_Cu
Definition: layer_ids.h:83
@ In25_Cu
Definition: layer_ids.h:90
@ B_Fab
Definition: layer_ids.h:118