Skip to content

Commit

Permalink
Merge branch 'master' into feature/module_pin_pingroup_actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joern274 committed Feb 29, 2024
2 parents 088ea00 + 62b5f7c commit 9b8bec4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file.
* added specific GUI handler for every `pin_changed` event thus replacing the reload-entire-pingroup-tree policy
* added class `ActionPingroup` so that UNDO function works for all pin / pin group actions issued from GUI
* miscellaneous
* added INIT field declaration to FF-gate-types in example library
* added drag'n drop feature allowing to move several nodes in graph view at same time
* added functions to Python GUI API to create, modifiy and delete views
* added GUI PluginParameter type `ComboBox` for parameters that can be requested from plugin
Expand Down
18 changes: 13 additions & 5 deletions plugins/gate_libraries/definitions/example_library.hgl
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,9 @@
"state": "IQ",
"neg_state": "IQN",
"next_state": "(D & CE)",
"clocked_on": "C"
"clocked_on": "C",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2128,7 +2130,9 @@
"neg_state": "IQN",
"next_state": "(D & CE)",
"clocked_on": "C",
"preset_on": "S"
"preset_on": "S",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2215,7 +2219,9 @@
"neg_state": "IQN",
"next_state": "(D & CE)",
"clocked_on": "C",
"clear_on": "R"
"clear_on": "R",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2305,7 +2311,9 @@
"clear_on": "R",
"preset_on": "S",
"state_clear_preset": "L",
"neg_state_clear_preset": "H"
"neg_state_clear_preset": "H",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2444,4 +2452,4 @@
]
}
]
}
}

0 comments on commit 9b8bec4

Please sign in to comment.