Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
1ae68145
Commit
1ae68145
authored
Sep 27, 2013
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: fix isssues in net names selection for not named nets (i.e. nets without labels)
parent
f2e5da63
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
22 deletions
+69
-22
class_netlist_object.cpp
eeschema/class_netlist_object.cpp
+6
-4
class_netlist_object.h
eeschema/class_netlist_object.h
+6
-0
netlist.cpp
eeschema/netlist.cpp
+41
-18
sch_component.cpp
eeschema/sch_component.cpp
+9
-0
sch_component.h
eeschema/sch_component.h
+7
-0
No files found.
eeschema/class_netlist_object.cpp
View file @
1ae68145
...
...
@@ -347,12 +347,14 @@ wxString NETLIST_OBJECT::GetShortNetName() const
if
(
m_netNameCandidate
->
m_Type
==
NET_PIN
)
{
if
(
m_Link
)
SCH_COMPONENT
*
link
=
(
SCH_COMPONENT
*
)
m_netNameCandidate
->
m_Link
;
if
(
link
)
// Should be always true
{
netName
=
wxT
(
"Net-<"
);
netName
<<
(
(
SCH_COMPONENT
*
)
m_Link
)
->
GetRef
(
&
m_SheetList
);
netName
<<
wxT
(
"-Pad"
)
<<
LIB_PIN
::
ReturnPinStringNum
(
m_PinNum
);
netName
<<
wxT
(
">"
);
netName
<<
link
->
GetRef
(
&
m_netNameCandidate
->
m_SheetList
);
netName
<<
wxT
(
"-Pad"
)
<<
LIB_PIN
::
ReturnPinStringNum
(
m_netNameCandidate
->
m_PinNum
)
<<
wxT
(
">"
);
}
}
else
...
...
eeschema/class_netlist_object.h
View file @
1ae68145
...
...
@@ -164,6 +164,12 @@ public:
*/
void
SetNetNameCandidate
(
NETLIST_OBJECT
*
aCandidate
);
/**
* @return true if an item has already a net name candidate
* and false if not ( m_netNameCandidate == NULL )
*/
bool
HasNetNameCandidate
()
{
return
m_netNameCandidate
!=
NULL
;
}
/**
* Function GetPinNum
* returns a pin number in wxString form. Pin numbers are not always
...
...
eeschema/netlist.cpp
View file @
1ae68145
...
...
@@ -467,26 +467,40 @@ void NETLIST_OBJECT_LIST::findBestNetNameForEachNet()
// (to avoid net names changes when the net is not modified,
// even if components are moved or deleted and undelete or replaced, as long
// the reference is kept)
netcode
=
0
;
// Build the list of items with no net names
NETLIST_OBJECT_LIST
list
;
for
(
unsigned
ii
=
0
;
ii
<
size
();
ii
++
)
{
item
=
GetItem
(
ii
);
if
(
!
item
->
HasNetNameCandidate
()
)
list
.
push_back
(
item
);
}
if
(
list
.
size
()
==
0
)
return
;
idxstart
=
0
;
candidate
=
NULL
;
item
=
NULL
;
for
(
unsigned
ii
=
0
;
ii
<=
size
();
ii
++
)
netcode
=
list
.
GetItemNet
(
0
);
for
(
unsigned
ii
=
0
;
ii
<=
list
.
size
();
ii
++
)
{
if
(
ii
==
size
()
)
// last item already found
netcode
=
-
2
;
else
item
=
GetItem
(
ii
);
if
(
ii
<
list
.
size
()
)
item
=
list
.
GetItem
(
ii
);
if
(
netcode
!=
item
->
GetNet
()
)
// End of net found
if
(
netcode
!=
item
->
GetNet
()
||
ii
>=
list
.
size
()
)
// End of net found
{
if
(
candidate
)
{
for
(
unsigned
jj
=
idxstart
;
jj
<
ii
;
jj
++
)
GetItem
(
jj
)
->
SetNetNameCandidate
(
candidate
);
{
NETLIST_OBJECT
*
obj
=
list
.
GetItem
(
jj
);
obj
->
SetNetNameCandidate
(
candidate
);
}
}
if
(
netcode
==
-
2
)
if
(
ii
>=
list
.
size
()
)
break
;
netcode
=
item
->
GetNet
();
...
...
@@ -494,17 +508,26 @@ void NETLIST_OBJECT_LIST::findBestNetNameForEachNet()
idxstart
=
ii
;
}
if
(
item
->
m_Type
==
NET_PIN
&&
item
->
GetShortNetName
().
IsEmpty
()
)
// Search all pins having no net name candidate yet, i.e. on nets
// having no labels
if
(
item
->
m_Type
==
NET_PIN
)
{
// A candidate is found
: select the better between the previous
//
and this on
e
item
->
SetNetNameCandidate
(
item
);
// Needed to calculate GetShortNetName
if
(
candidate
==
NULL
)
candidate
=
item
;
else
// A candidate is found
, however components which are not in
//
netlist are not candidate because some have their referenc
e
// is changed each time the netlist is built (power components)
// and anyway they are not a good candidate
SCH_COMPONENT
*
link
=
(
SCH_COMPONENT
*
)
item
->
m_Link
;
if
(
link
->
IsInNetlist
()
)
{
if
(
item
->
GetShortNetName
().
Cmp
(
candidate
->
GetShortNetName
()
)
<
0
)
// select the better between the previous and this one
item
->
SetNetNameCandidate
(
item
);
// Needed to calculate GetShortNetName
if
(
candidate
==
NULL
)
candidate
=
item
;
else
{
if
(
item
->
GetShortNetName
().
Cmp
(
candidate
->
GetShortNetName
()
)
<
0
)
candidate
=
item
;
}
}
}
}
...
...
eeschema/sch_component.cpp
View file @
1ae68145
...
...
@@ -1888,6 +1888,15 @@ bool SCH_COMPONENT::doIsConnected( const wxPoint& aPosition ) const
return
false
;
}
/* return true if the component is in netlist
* which means this is not a power component, or something
* like a component reference starting by #
*/
bool
SCH_COMPONENT
::
IsInNetlist
()
const
{
SCH_FIELD
*
rf
=
GetField
(
REFERENCE
);
return
!
rf
->
GetText
().
StartsWith
(
"#"
);
}
void
SCH_COMPONENT
::
Plot
(
PLOTTER
*
aPlotter
)
{
...
...
eeschema/sch_component.h
View file @
1ae68145
...
...
@@ -365,6 +365,13 @@ public:
bool
IsConnectable
()
const
{
return
true
;
}
/**
* @return true if the component is in netlist
* which means this is not a power component, or something
* like a component reference starting by #
*/
bool
IsInNetlist
()
const
;
void
GetConnectionPoints
(
vector
<
wxPoint
>&
aPoints
)
const
;
SEARCH_RESULT
Visit
(
INSPECTOR
*
inspector
,
const
void
*
testData
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment