Skip to content

Commit 9b8bec4

Browse files
committedFeb 29, 2024
Merge branch 'master' into feature/module_pin_pingroup_actions
2 parents 088ea00 + 62b5f7c commit 9b8bec4

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file.
2525
* added specific GUI handler for every `pin_changed` event thus replacing the reload-entire-pingroup-tree policy
2626
* added class `ActionPingroup` so that UNDO function works for all pin / pin group actions issued from GUI
2727
* miscellaneous
28+
* added INIT field declaration to FF-gate-types in example library
2829
* added drag'n drop feature allowing to move several nodes in graph view at same time
2930
* added functions to Python GUI API to create, modifiy and delete views
3031
* added GUI PluginParameter type `ComboBox` for parameters that can be requested from plugin

‎plugins/gate_libraries/definitions/example_library.hgl

+13-5
Original file line numberDiff line numberDiff line change
@@ -2055,7 +2055,9 @@
20552055
"state": "IQ",
20562056
"neg_state": "IQN",
20572057
"next_state": "(D & CE)",
2058-
"clocked_on": "C"
2058+
"clocked_on": "C",
2059+
"data_category": "generic",
2060+
"data_identifier": "INIT"
20592061
},
20602062
"pin_groups": [
20612063
{
@@ -2128,7 +2130,9 @@
21282130
"neg_state": "IQN",
21292131
"next_state": "(D & CE)",
21302132
"clocked_on": "C",
2131-
"preset_on": "S"
2133+
"preset_on": "S",
2134+
"data_category": "generic",
2135+
"data_identifier": "INIT"
21322136
},
21332137
"pin_groups": [
21342138
{
@@ -2215,7 +2219,9 @@
22152219
"neg_state": "IQN",
22162220
"next_state": "(D & CE)",
22172221
"clocked_on": "C",
2218-
"clear_on": "R"
2222+
"clear_on": "R",
2223+
"data_category": "generic",
2224+
"data_identifier": "INIT"
22192225
},
22202226
"pin_groups": [
22212227
{
@@ -2305,7 +2311,9 @@
23052311
"clear_on": "R",
23062312
"preset_on": "S",
23072313
"state_clear_preset": "L",
2308-
"neg_state_clear_preset": "H"
2314+
"neg_state_clear_preset": "H",
2315+
"data_category": "generic",
2316+
"data_identifier": "INIT"
23092317
},
23102318
"pin_groups": [
23112319
{
@@ -2444,4 +2452,4 @@
24442452
]
24452453
}
24462454
]
2447-
}
2455+
}

0 commit comments

Comments
 (0)
Please sign in to comment.