File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 38
38
ledchain SHOWN -> IN dummy(Forward)
39
39
ledchain READY -> IN dummyB(Forward)
40
40
diff : |
41
+ - OUTPORT=ledchain.PIXELSET:PIXELSET
41
42
- "true" -> HWSPI ledchain
42
43
+ "2" -> PINDATA ledchain
43
44
+ "3" -> PINCLK ledchain
44
- - OUTPORT=ledchain.PIXELSET:PIXELSET
Original file line number Diff line number Diff line change @@ -230,15 +230,15 @@ calculateDiff = (from, to) ->
230
230
# this is just the basics/dry-fact view. Any heuristics etc is applied afterwards
231
231
changes = []
232
232
233
+ # exported port changes
234
+ changes = changes .concat portChanges (from .inports , to .inports , ' inport' )
235
+ changes = changes .concat portChanges (from .outports , to .outports , ' outport' )
236
+
233
237
# nodes added/removed
234
238
changes = changes .concat processChanges (from .processes , to .processes )
235
239
236
240
# edges added/removed
237
241
changes = changes .concat connectionChanges (from .connections , to .connections )
238
-
239
- # exported port changes
240
- changes = changes .concat portChanges (from .inports , to .inports , ' inport' )
241
- changes = changes .concat portChanges (from .outports , to .outports , ' outport' )
242
242
243
243
# FIXME: diff graph properties
244
244
# TODO: support diffing of groups
You can’t perform that action at this time.
0 commit comments