@mchp-mcc/scf-pic8-clc-v1 4.2.0 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +4 -6
- package/Readme.md +4 -6
- package/output/autoCreator.js +31 -9
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +31 -9
- package/output/autoProcessor.js.map +1 -1
- package/output/creator.js +31 -9
- package/output/creator.js.map +1 -1
- package/output/processor.js +31 -9
- package/output/processor.js.map +1 -1
- package/output/reducer.js +1 -1
- package/output/view.js +1 -1
- package/package.json +3 -3
package/Changelog.md
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [4.2.
|
|
4
|
+
## [4.2.1] - 2024-09-13
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
|
-
- **M8PD-
|
|
8
|
-
- **M8PD-5708** :- Updated CLC_Enable() and CLC_Disable() APIs to support all the instances of CLC module
|
|
9
|
-
- **M8PD-5172** :- Added support for CLCINxPPS pin in pin grid view.
|
|
7
|
+
- **M8PD-7564** :- CLCINxPPS options not showing in pin grid view on Q24 devices
|
|
10
8
|
|
|
11
9
|
|
|
12
|
-
## [4.
|
|
10
|
+
## [4.2.0] - 2024-06-19
|
|
13
11
|
|
|
14
12
|
|
|
15
13
|
No changes from previous version
|
|
16
14
|
|
|
17
15
|
|
|
18
|
-
## [4.1.
|
|
16
|
+
## [4.1.3] - 2024-03-28
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
No changes from previous version
|
package/Readme.md
CHANGED
|
@@ -7,21 +7,19 @@ The Configurable Logic Cell (CLC) module provides programmable logic that operat
|
|
|
7
7
|
# Changelog
|
|
8
8
|
All notable changes to this project will be documented in this file.
|
|
9
9
|
|
|
10
|
-
## [4.2.
|
|
10
|
+
## [4.2.1] - 2024-09-13
|
|
11
11
|
|
|
12
12
|
### Bug Fixes
|
|
13
|
-
- **M8PD-
|
|
14
|
-
- **M8PD-5708** :- Updated CLC_Enable() and CLC_Disable() APIs to support all the instances of CLC module
|
|
15
|
-
- **M8PD-5172** :- Added support for CLCINxPPS pin in pin grid view.
|
|
13
|
+
- **M8PD-7564** :- CLCINxPPS options not showing in pin grid view on Q24 devices
|
|
16
14
|
|
|
17
15
|
|
|
18
|
-
## [4.
|
|
16
|
+
## [4.2.0] - 2024-06-19
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
No changes from previous version
|
|
22
20
|
|
|
23
21
|
|
|
24
|
-
## [4.1.
|
|
22
|
+
## [4.1.3] - 2024-03-28
|
|
25
23
|
|
|
26
24
|
|
|
27
25
|
No changes from previous version
|
package/output/autoCreator.js
CHANGED
|
@@ -4857,7 +4857,9 @@ function getRowData(appModel, rowData) {
|
|
|
4857
4857
|
}
|
|
4858
4858
|
});
|
|
4859
4859
|
} else if (rowData.name === "clcin0") {
|
|
4860
|
-
if (inputSelections.
|
|
4860
|
+
if (inputSelections.some(function (input) {
|
|
4861
|
+
return input.includes("CLCIN0PPS");
|
|
4862
|
+
})) {
|
|
4861
4863
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4862
4864
|
module: moduleName,
|
|
4863
4865
|
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
@@ -4880,7 +4882,9 @@ function getRowData(appModel, rowData) {
|
|
|
4880
4882
|
return undefined; // hide row
|
|
4881
4883
|
}
|
|
4882
4884
|
} else if (rowData.name === "clcin1") {
|
|
4883
|
-
if (inputSelections.
|
|
4885
|
+
if (inputSelections.some(function (input) {
|
|
4886
|
+
return input.includes("CLCIN1PPS");
|
|
4887
|
+
})) {
|
|
4884
4888
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4885
4889
|
module: moduleName,
|
|
4886
4890
|
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
@@ -4903,9 +4907,12 @@ function getRowData(appModel, rowData) {
|
|
|
4903
4907
|
return undefined; // hide row
|
|
4904
4908
|
}
|
|
4905
4909
|
} else if (rowData.name === "clcin2") {
|
|
4906
|
-
if (inputSelections.
|
|
4910
|
+
if (inputSelections.some(function (input) {
|
|
4911
|
+
return input.includes("CLCIN2PPS");
|
|
4912
|
+
})) {
|
|
4907
4913
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4908
4914
|
module: moduleName,
|
|
4915
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4909
4916
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4910
4917
|
module: moduleName
|
|
4911
4918
|
})
|
|
@@ -4914,9 +4921,12 @@ function getRowData(appModel, rowData) {
|
|
|
4914
4921
|
return undefined; // hide row
|
|
4915
4922
|
}
|
|
4916
4923
|
} else if (rowData.name === "clcin3") {
|
|
4917
|
-
if (inputSelections.
|
|
4924
|
+
if (inputSelections.some(function (input) {
|
|
4925
|
+
return input.includes("CLCIN3PPS");
|
|
4926
|
+
})) {
|
|
4918
4927
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4919
4928
|
module: moduleName,
|
|
4929
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4920
4930
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4921
4931
|
module: moduleName
|
|
4922
4932
|
})
|
|
@@ -4925,9 +4935,12 @@ function getRowData(appModel, rowData) {
|
|
|
4925
4935
|
return undefined; // hide row
|
|
4926
4936
|
}
|
|
4927
4937
|
} else if (rowData.name === "clcin4") {
|
|
4928
|
-
if (inputSelections.
|
|
4938
|
+
if (inputSelections.some(function (input) {
|
|
4939
|
+
return input.includes("CLCIN4PPS");
|
|
4940
|
+
})) {
|
|
4929
4941
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4930
4942
|
module: moduleName,
|
|
4943
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4931
4944
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4932
4945
|
module: moduleName
|
|
4933
4946
|
})
|
|
@@ -4936,9 +4949,12 @@ function getRowData(appModel, rowData) {
|
|
|
4936
4949
|
return undefined; // hide row
|
|
4937
4950
|
}
|
|
4938
4951
|
} else if (rowData.name === "clcin5") {
|
|
4939
|
-
if (inputSelections.
|
|
4952
|
+
if (inputSelections.some(function (input) {
|
|
4953
|
+
return input.includes("CLCIN5PPS");
|
|
4954
|
+
})) {
|
|
4940
4955
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4941
4956
|
module: moduleName,
|
|
4957
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4942
4958
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4943
4959
|
module: moduleName
|
|
4944
4960
|
})
|
|
@@ -4947,9 +4963,12 @@ function getRowData(appModel, rowData) {
|
|
|
4947
4963
|
return undefined; // hide row
|
|
4948
4964
|
}
|
|
4949
4965
|
} else if (rowData.name === "clcin6") {
|
|
4950
|
-
if (inputSelections.
|
|
4966
|
+
if (inputSelections.some(function (input) {
|
|
4967
|
+
return input.includes("CLCIN6PPS");
|
|
4968
|
+
})) {
|
|
4951
4969
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4952
4970
|
module: moduleName,
|
|
4971
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4953
4972
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4954
4973
|
module: moduleName
|
|
4955
4974
|
})
|
|
@@ -4958,9 +4977,12 @@ function getRowData(appModel, rowData) {
|
|
|
4958
4977
|
return undefined; // hide row
|
|
4959
4978
|
}
|
|
4960
4979
|
} else if (rowData.name === "clcin7") {
|
|
4961
|
-
if (inputSelections.
|
|
4980
|
+
if (inputSelections.some(function (input) {
|
|
4981
|
+
return input.includes("CLCIN7PPS");
|
|
4982
|
+
})) {
|
|
4962
4983
|
retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
|
|
4963
4984
|
module: moduleName,
|
|
4985
|
+
behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
|
|
4964
4986
|
filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
|
|
4965
4987
|
module: moduleName
|
|
4966
4988
|
})
|
|
@@ -5330,7 +5352,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
|
|
|
5330
5352
|
|
|
5331
5353
|
__webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
|
|
5332
5354
|
__webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
|
|
5333
|
-
module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.2.
|
|
5355
|
+
module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.2.1/generated_module/src/autoCreator.ts */"./generated_module/src/autoCreator.ts");
|
|
5334
5356
|
|
|
5335
5357
|
|
|
5336
5358
|
/***/ })
|