@mchp-mcc/scf-pic8-clc-v1 4.0.13 → 4.0.14

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.
Files changed (50) hide show
  1. package/Changelog.md +9 -0
  2. package/Readme.md +9 -0
  3. package/output/autoCreator.js +167 -3
  4. package/output/autoCreator.js.map +1 -1
  5. package/output/autoProcessor.js +167 -3
  6. package/output/autoProcessor.js.map +1 -1
  7. package/output/creator.js +167 -3
  8. package/output/creator.js.map +1 -1
  9. package/output/processor.js +167 -3
  10. package/output/processor.js.map +1 -1
  11. package/output/reducer.js +1 -1
  12. package/output/view.js +1 -1
  13. package/package.json +6 -8
  14. package/src/App.tsx +0 -101
  15. package/src/Constants.ts +0 -181
  16. package/src/CreatorFunctions.ts +0 -44
  17. package/src/DerivedData.test.tsx +0 -285
  18. package/src/DerivedData.ts +0 -444
  19. package/src/GeneratorModel.test.ts +0 -57
  20. package/src/GeneratorModel.ts +0 -60
  21. package/src/InputStateCalculator.test.ts +0 -64
  22. package/src/InputStateCalculator.ts +0 -50
  23. package/src/PinsLogic.test.ts +0 -514
  24. package/src/PinsLogic.ts +0 -164
  25. package/src/SettingNameCalculator.test.ts +0 -21
  26. package/src/SettingNameCalculator.ts +0 -28
  27. package/src/actions.ts +0 -22
  28. package/src/catalog.json +0 -24
  29. package/src/components/CLCView.tsx +0 -141
  30. package/src/components/Canvas.tsx +0 -757
  31. package/src/components/InputSource.tsx +0 -24
  32. package/src/components/InputStage.tsx +0 -55
  33. package/src/components/MX.ts +0 -12
  34. package/src/gates/ALogicGate.ts +0 -221
  35. package/src/gates/AndGate.ts +0 -36
  36. package/src/gates/GateInputState.ts +0 -1
  37. package/src/gates/Latch.ts +0 -93
  38. package/src/gates/NotGate.ts +0 -37
  39. package/src/gates/OrGate.ts +0 -134
  40. package/src/gates/XorGate.ts +0 -12
  41. package/src/index.tsx +0 -51
  42. package/src/interfaces/cla-clc-stacked.test.ts +0 -61
  43. package/src/interfaces/cla-clc-stacked.ts +0 -181
  44. package/src/interfaces/clc-connections.tsx +0 -62
  45. package/src/interfaces/signal-source.ts +0 -78
  46. package/src/interfaces/trigger-source.ts +0 -78
  47. package/src/moduleConfig.json +0 -882
  48. package/src/pinsdata.json +0 -151
  49. package/src/reducer.test.tsx +0 -118
  50. package/src/reducer.tsx +0 -80
package/Changelog.md CHANGED
@@ -1,6 +1,15 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [4.0.14] - 2022-12-15
5
+
6
+ ### Bug Fixes
7
+ - **CC8SCRIP-11417** :- CLC module does not show on the Pin Grid View
8
+
9
+ ### Improvements
10
+ - **CC8SCRIP-11127** :- Added a validator for the Custom Name in Easy View
11
+
12
+
4
13
  ## [4.0.13] - 2022-10-27
5
14
 
6
15
  ### New Features
package/Readme.md CHANGED
@@ -7,6 +7,15 @@ 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.0.14] - 2022-12-15
11
+
12
+ ### Bug Fixes
13
+ - **CC8SCRIP-11417** :- CLC module does not show on the Pin Grid View
14
+
15
+ ### Improvements
16
+ - **CC8SCRIP-11127** :- Added a validator for the Custom Name in Easy View
17
+
18
+
10
19
  ## [4.0.13] - 2022-10-27
11
20
 
12
21
  ### New Features
@@ -212,6 +212,63 @@ var getModuleConfigFromFile = function getModuleConfigFromFile() {
212
212
 
213
213
  /***/ }),
214
214
 
215
+ /***/ "./generated_module/src/pins/PCPHelper.ts":
216
+ /*!************************************************!*\
217
+ !*** ./generated_module/src/pins/PCPHelper.ts ***!
218
+ \************************************************/
219
+ /*! exports provided: getPinsData, getPinsLogic */
220
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
221
+
222
+ "use strict";
223
+ __webpack_require__.r(__webpack_exports__);
224
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getPinsData", function() { return getPinsData; });
225
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getPinsLogic", function() { return getPinsLogic; });
226
+ /* harmony import */ var _getUserData__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../getUserData */ "./generated_module/src/getUserData.ts");
227
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
228
+
229
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
230
+
231
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
232
+
233
+
234
+
235
+ var mockPinsLogic = function mockPinsLogic(getPinsData) {
236
+ var getCompletePinData = function getCompletePinData(appModel) {
237
+ return {};
238
+ };
239
+
240
+ var getRowData = function getRowData(appModel, rowData) {
241
+ return rowData;
242
+ };
243
+
244
+ return {
245
+ getCompletePinData: getCompletePinData,
246
+ getRowData: getRowData,
247
+ getPinsData: getPinsData
248
+ };
249
+ };
250
+
251
+ var getPinsData = function getPinsData() {
252
+ var _getPinsDataFromFile;
253
+
254
+ return (_getPinsDataFromFile = Object(_getUserData__WEBPACK_IMPORTED_MODULE_0__["getPinsDataFromFile"])()) !== null && _getPinsDataFromFile !== void 0 ? _getPinsDataFromFile : {
255
+ rows: []
256
+ };
257
+ };
258
+ var getPinsLogic = function getPinsLogic() {
259
+ var pinsLogic = Object(_getUserData__WEBPACK_IMPORTED_MODULE_0__["getPinsLogicFromFile"])();
260
+
261
+ if (pinsLogic) {
262
+ return _objectSpread(_objectSpread({}, pinsLogic), {}, {
263
+ getPinsData: getPinsData
264
+ });
265
+ } else {
266
+ return mockPinsLogic(getPinsData);
267
+ }
268
+ };
269
+
270
+ /***/ }),
271
+
215
272
  /***/ "./node_modules/@microchip/scf-common/lib/Processor.js":
216
273
  /*!*************************************************************!*\
217
274
  !*** ./node_modules/@microchip/scf-common/lib/Processor.js ***!
@@ -793,6 +850,84 @@ exports.getInterfaceName = helpers_1.getInterfaceName;
793
850
  exports.getInterfaceVersion = helpers_1.getInterfaceVersion;
794
851
 
795
852
 
853
+ /***/ }),
854
+
855
+ /***/ "./node_modules/@microchip/scf-validators/lib/Validators/CFunctionValidator.js":
856
+ /*!*************************************************************************************!*\
857
+ !*** ./node_modules/@microchip/scf-validators/lib/Validators/CFunctionValidator.js ***!
858
+ \*************************************************************************************/
859
+ /*! no static exports found */
860
+ /***/ (function(module, exports, __webpack_require__) {
861
+
862
+ "use strict";
863
+
864
+ Object.defineProperty(exports, "__esModule", { value: true });
865
+ exports.getCFunctionValidator = void 0;
866
+ var cKeywords = [
867
+ "auto",
868
+ "const",
869
+ "double",
870
+ "float",
871
+ "int",
872
+ "short",
873
+ "struct",
874
+ "unsigned",
875
+ "break",
876
+ "continue",
877
+ "else",
878
+ "for",
879
+ "long",
880
+ "signed",
881
+ "switch",
882
+ "void",
883
+ "case",
884
+ "default",
885
+ "enum",
886
+ "goto",
887
+ "register",
888
+ "sizeof",
889
+ "typedef",
890
+ "volatile",
891
+ "char",
892
+ "do",
893
+ "extern",
894
+ "if",
895
+ "return",
896
+ "static",
897
+ "union",
898
+ "while",
899
+ ];
900
+ var functionPattern = "(?=^([A-Za-z]\\S|_)\\w+$)";
901
+ var errorMessage = "Must be valid C function syntax.";
902
+ var doNotMatchKeywordsRegex = function () {
903
+ return "(^(?!" + cKeywords.join("|") + ")).*";
904
+ };
905
+ var result = doNotMatchKeywordsRegex();
906
+ var pattern = {
907
+ pattern: functionPattern + result,
908
+ };
909
+ exports.getCFunctionValidator = function () { return ({
910
+ getRjsfValidation: function () { return pattern; },
911
+ getCustomErrorMessage: function () { return errorMessage; },
912
+ }); };
913
+
914
+
915
+ /***/ }),
916
+
917
+ /***/ "./node_modules/@microchip/scf-validators/lib/index.js":
918
+ /*!*************************************************************!*\
919
+ !*** ./node_modules/@microchip/scf-validators/lib/index.js ***!
920
+ \*************************************************************/
921
+ /*! no static exports found */
922
+ /***/ (function(module, exports, __webpack_require__) {
923
+
924
+ "use strict";
925
+
926
+ Object.defineProperty(exports, "__esModule", { value: true });
927
+ var CFunctionValidator_1 = __webpack_require__(/*! ./Validators/CFunctionValidator */ "./node_modules/@microchip/scf-validators/lib/Validators/CFunctionValidator.js");
928
+ Object.defineProperty(exports, "getCFunctionValidator", { enumerable: true, get: function () { return CFunctionValidator_1.getCFunctionValidator; } });
929
+
930
+
796
931
  /***/ }),
797
932
 
798
933
  /***/ "./node_modules/core-js/es/map/index.js":
@@ -3847,6 +3982,9 @@ __webpack_require__.r(__webpack_exports__);
3847
3982
  /* harmony import */ var _generated_module_src_Utils__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../generated_module/src/Utils */ "./generated_module/src/Utils.ts");
3848
3983
  /* harmony import */ var _microchip_scf_device_lib_CalculateRegisterValue__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @microchip/scf-device/lib/CalculateRegisterValue */ "./node_modules/@microchip/scf-device/lib/CalculateRegisterValue.js");
3849
3984
  /* harmony import */ var _microchip_scf_device_lib_CalculateRegisterValue__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(_microchip_scf_device_lib_CalculateRegisterValue__WEBPACK_IMPORTED_MODULE_10__);
3985
+ /* harmony import */ var _generated_module_src_pins_PCPHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../generated_module/src/pins/PCPHelper */ "./generated_module/src/pins/PCPHelper.ts");
3986
+ /* harmony import */ var _microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @microchip/scf-validators/lib */ "./node_modules/@microchip/scf-validators/lib/index.js");
3987
+ /* harmony import */ var _microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(_microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12__);
3850
3988
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
3851
3989
 
3852
3990
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
@@ -3866,6 +4004,8 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
3866
4004
 
3867
4005
 
3868
4006
 
4007
+
4008
+
3869
4009
  var getDerivedData = function getDerivedData(dataModel) {
3870
4010
  if (dataModel) {
3871
4011
  return new MyDerivedData(dataModel);
@@ -3895,6 +4035,8 @@ var MyDerivedData = function MyDerivedData(dataModel) {
3895
4035
 
3896
4036
  _defineProperty(this, "gateDerivedSettings", void 0);
3897
4037
 
4038
+ _defineProperty(this, "cValidator", Object(_microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12__["getCFunctionValidator"])());
4039
+
3898
4040
  _defineProperty(this, "getMyFunctions", function () {
3899
4041
  return _objectSpread(_objectSpread({
3900
4042
  overrideDefaultValues: _this.overrideDefaultValues,
@@ -3926,7 +4068,10 @@ var MyDerivedData = function MyDerivedData(dataModel) {
3926
4068
  isrCallback: _this.isrCallback,
3927
4069
  clc_connections_results: _this.clc_connections_results,
3928
4070
  isEnabled: _this.isEnabled,
3929
- getRequestedModule: _this.getRequestedModule
4071
+ getRequestedModule: _this.getRequestedModule,
4072
+ getPinsLogic: _generated_module_src_pins_PCPHelper__WEBPACK_IMPORTED_MODULE_11__["getPinsLogic"],
4073
+ componentNameValidator: _this.componentNameValidator,
4074
+ getCustomUiErrors: _this.getCustomUiErrors
3930
4075
  });
3931
4076
  });
3932
4077
 
@@ -3951,6 +4096,25 @@ var MyDerivedData = function MyDerivedData(dataModel) {
3951
4096
  }
3952
4097
  });
3953
4098
 
4099
+ _defineProperty(this, "componentNameValidator", function () {
4100
+ return {
4101
+ pattern: _this.cValidator.getRjsfValidation().pattern
4102
+ };
4103
+ });
4104
+
4105
+ _defineProperty(this, "getCustomUiErrors", function (componentName) {
4106
+ switch (componentName) {
4107
+ case "componentName":
4108
+ return [{
4109
+ name: "pattern",
4110
+ message: _this.cValidator.getCustomErrorMessage()
4111
+ }];
4112
+
4113
+ default:
4114
+ return undefined;
4115
+ }
4116
+ });
4117
+
3954
4118
  _defineProperty(this, "clc_connections_results", function () {
3955
4119
  var inputs = [];
3956
4120
  _Constants__WEBPACK_IMPORTED_MODULE_7__["GATES"].forEach(function (gate) {
@@ -4921,7 +5085,7 @@ var Interface = {
4921
5085
  /*! exports provided: moduleName, deviceType, hasPins, booleanValues, help, UIGroups, UIOrder, tabs, analytics, templates, imports, exports, softwareData, peripherals, default */
4922
5086
  /***/ (function(module) {
4923
5087
 
4924
- module.exports = JSON.parse("{\"moduleName\":\"CLC\",\"deviceType\":\"PIC\",\"hasPins\":true,\"booleanValues\":{\"true\":\"enabled\",\"false\":\"disabled\"},\"help\":{\"url\":\"v2/keyword-lookup?keyword=scf-pic8-clc-v1&redirect=true\",\"tooltip\":\"Configurable Logic Cell (CLC): Integrated combinational and sequential logic.\"},\"UIGroups\":{\"software\":\"Software Settings\",\"hardware\":\"CLC Settings\",\"interrupt\":\"Interrupt Settings\"},\"UIOrder\":{\"software\":[\"*\"],\"hardware\":[\"lcenClccon\",\"lcmodeClccon\",\"*\"],\"interrupt\":[\"clci\",\"lcintpClccon\",\"lcintnClccon\",\"*\"]},\"tabs\":{\"main\":\"Easy View\",\"register\":\"Register Initialization\"},\"analytics\":{\"logAlwaysComps\":[\"lcmodeClccon\",\"lcenClccon\",\"clci\",\"lcintnClccon\",\"lcintpClccon\"],\"logOnChangeComps\":[],\"compMapping\":{\"lcmodeClccon\":\"CLC_Mode\",\"lcenClccon\":\"CLC_Enable\",\"clci\":\"CLC_Interrupt_Enable\",\"lcintnClccon\":\"CLC_Falling_Interrupt\",\"lcintpClccon\":\"CLC_Rising_Interrupt\"}},\"templates\":[{\"src\":\"output/cla_clc_stacked_v5.c.ftl\",\"dest\":\"clc/src/${sourceFileName}\",\"generateWithHardware\":true},{\"src\":\"output/cla_clc_stacked_v5.h.ftl\",\"dest\":\"clc/${headerFileName}\",\"generateWithHardware\":true}],\"imports\":{\"scf_pic8_clc_v1\":{\"import\":{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"isRequired\":true}},\"pin_standard\":{\"import\":{\"interfaceId\":{\"name\":\"pin-standard\",\"version\":\"0.1.0\"}}},\"initializer_system\":{\"nodeModule\":{\"importName\":\"systemInit\",\"node\":\"@microchip/initializer-system\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"initializer-system\",\"version\":\"^0.5.3\"}}},\"interrupt_standard\":{\"nodeModule\":{\"importName\":\"interrupt_standard\",\"node\":\"@microchip/interrupt-standard\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"interrupt-standard\",\"version\":\"^1.0.1\"}}},\"device_meta\":{\"import\":{\"interfaceId\":{\"name\":\"device-meta\",\"version\":\"^1.0.0\"}}},\"clc_connections\":{\"import\":{\"interfaceId\":{\"name\":\"clc-connections\",\"version\":\"0.1.0\"}}},\"CMP\":{\"import\":{\"interfaceId\":{\"name\":\"cmp-interface\",\"version\":\"0.1.0\"}}},\"HLVD\":{\"import\":{\"interfaceId\":{\"name\":\"hlvd-interface\",\"version\":\"^0.1.0\"}}},\"I2C\":{\"import\":{\"interfaceId\":{\"name\":\"i2c-host\",\"version\":\"^2.0.0\"}}},\"MSSP\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"NCO\":{\"import\":{\"interfaceId\":{\"name\":\"nco-interface\",\"version\":\"0.1.0\"}}},\"SPI\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"TMR0\":{\"import\":{\"interfaceId\":{\"name\":\"timer0_general_parameters\",\"version\":\"0.1.0\"}}},\"UART\":{\"import\":{\"interfaceId\":{\"name\":\"uart-basic\",\"version\":\"^4.0.0\"}}},\"ZCD\":{\"import\":{\"interfaceId\":{\"name\":\"zcd-output-parameters\",\"version\":\"1.0.0\"}}}},\"exports\":{\"clc\":{\"interfaces\":[{\"interfaceId\":{\"name\":\"cla-clc-stacked\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"trigger-source\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"signal-source\",\"version\":\"0.1.0\"}}]}},\"softwareData\":{\"componentName\":{\"name\":\"componentName\",\"description\":\"Custom Name\",\"type\":\"string\",\"defaultValue\":\"Module\",\"group\":\"software\",\"tabs\":[\"main\"],\"category\":\"software\"},\"clcDepSelector\":{\"name\":\"clcDepSelector\",\"category\":\"import\",\"description\":\"CLC dependency selector\",\"type\":\"ComboBox\",\"group\":\"software\",\"importId\":\"scf_pic8_clc_v1\",\"tabs\":[\"main\"]},\"CLCI\":{\"name\":\"clci\",\"description\":\"Enable CLC Interrupt\",\"defaultValue\":false,\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"software\"}},\"peripherals\":[{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"interrupts\":[\"CLCI\"],\"registers\":{\"CLCSELECT\":[{\"setting\":\"SLCT\",\"name\":\"slctClcselect\",\"description\":\"CLC instance select bits\",\"type\":\"string\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"}],\"CLCCON\":[{\"setting\":\"LCMODE\",\"name\":\"lcmodeClccon\",\"description\":\"Logic Cell Mode bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTN\",\"name\":\"lcintnClccon\",\"description\":\"Enable Falling Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTP\",\"name\":\"lcintpClccon\",\"description\":\"Enable Rising Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCOUT\",\"name\":\"lcoutClccon\",\"description\":\"Logic Cell Data Output Status bit\",\"type\":\"boolean\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"},{\"setting\":\"LCEN\",\"name\":\"lcenClccon\",\"description\":\"Enable CLC\",\"type\":\"boolean\",\"group\":\"hardware\",\"overrideDefaultValue\":\"enabled\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}}],\"CLCPOL\":[{\"setting\":\"LCG1POL\",\"name\":\"lcg1polClcpol\",\"description\":\"Logic Cell Gate 1 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2POL\",\"name\":\"lcg2polClcpol\",\"description\":\"Logic Cell Gate 2 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3POL\",\"name\":\"lcg3polClcpol\",\"description\":\"Logic Cell Gate 3 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4POL\",\"name\":\"lcg4polClcpol\",\"description\":\"Logic Cell Gate 4 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCPOL\",\"name\":\"lcpolClcpol\",\"description\":\"Logic Cell Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL0\":[{\"setting\":\"LCD1S\",\"name\":\"lcd1sClcsel0\",\"description\":\"Logic Cell Data1 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL1\":[{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel1\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL2\":[{\"setting\":\"LCD3S\",\"name\":\"lcd3sClcsel2\",\"description\":\"Logic Cell Data3 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL3\":[{\"setting\":\"LCD4S\",\"name\":\"lcd4sClcsel3\",\"description\":\"Logic Cell Data4 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS0\":[{\"setting\":\"LCG1D1N\",\"name\":\"lcg1d1nClcgls0\",\"description\":\"Gate 1 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D1T\",\"name\":\"lcg1d1tClcgls0\",\"description\":\"Gate 1 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D2N\",\"name\":\"lcg1d2nClcgls0\",\"description\":\"Gate 1 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D2T\",\"name\":\"lcg1d2tClcgls0\",\"description\":\"Gate 1 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D3N\",\"name\":\"lcg1d3nClcgls0\",\"description\":\"Gate 1 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D3T\",\"name\":\"lcg1d3tClcgls0\",\"description\":\"Gate 1 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D4N\",\"name\":\"lcg1d4nClcgls0\",\"description\":\"Gate 1 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D4T\",\"name\":\"lcg1d4tClcgls0\",\"description\":\"Gate 1 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS1\":[{\"setting\":\"LCG2D1N\",\"name\":\"lcg2d1nClcgls1\",\"description\":\"Gate 2 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D1T\",\"name\":\"lcg2d1tClcgls1\",\"description\":\"Gate 2 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D2N\",\"name\":\"lcg2d2nClcgls1\",\"description\":\"Gate 2 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D2T\",\"name\":\"lcg2d2tClcgls1\",\"description\":\"Gate 2 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D3N\",\"name\":\"lcg2d3nClcgls1\",\"description\":\"Gate 2 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D3T\",\"name\":\"lcg2d3tClcgls1\",\"description\":\"Gate 2 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D4N\",\"name\":\"lcg2d4nClcgls1\",\"description\":\"Gate 2 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D4T\",\"name\":\"lcg2d4tClcgls1\",\"description\":\"Gate 2 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS2\":[{\"setting\":\"LCG3D1N\",\"name\":\"lcg3d1nClcgls2\",\"description\":\"Gate 3 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D1T\",\"name\":\"lcg3d1tClcgls2\",\"description\":\"Gate 3 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D2N\",\"name\":\"lcg3d2nClcgls2\",\"description\":\"Gate 3 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D2T\",\"name\":\"lcg3d2tClcgls2\",\"description\":\"Gate 3 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D3N\",\"name\":\"lcg3d3nClcgls2\",\"description\":\"Gate 3 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D3T\",\"name\":\"lcg3d3tClcgls2\",\"description\":\"Gate 3 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D4N\",\"name\":\"lcg3d4nClcgls2\",\"description\":\"Gate 3 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D4T\",\"name\":\"lcg3d4tClcgls2\",\"description\":\"Gate 3 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS3\":[{\"setting\":\"LCG4D1N\",\"name\":\"lcg4d1nClcgls3\",\"description\":\"Gate 4 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D1T\",\"name\":\"lcg4d1tClcgls3\",\"description\":\"Gate 4 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D2N\",\"name\":\"lcg4d2nClcgls3\",\"description\":\"Gate 4 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D2T\",\"name\":\"lcg4d2tClcgls3\",\"description\":\"Gate 4 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D3N\",\"name\":\"lcg4d3nClcgls3\",\"description\":\"Gate 4 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D3T\",\"name\":\"lcg4d3tClcgls3\",\"description\":\"Gate 4 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D4N\",\"name\":\"lcg4d4nClcgls3\",\"description\":\"Gate 4 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D4T\",\"name\":\"lcg4d4tClcgls3\",\"description\":\"Gate 4 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCDATA\":[{\"setting\":\"LCOUT\",\"name\":\"lcoutClcdata\",\"description\":\"CLC8 output bit\",\"type\":\"string\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"}]}}]}");
5088
+ module.exports = JSON.parse("{\"moduleName\":\"CLC\",\"deviceType\":\"PIC\",\"hasPins\":true,\"booleanValues\":{\"true\":\"enabled\",\"false\":\"disabled\"},\"help\":{\"url\":\"v2/keyword-lookup?keyword=scf-pic8-clc-v1&redirect=true\",\"tooltip\":\"Configurable Logic Cell (CLC): Integrated combinational and sequential logic.\"},\"UIGroups\":{\"software\":\"Software Settings\",\"hardware\":\"CLC Settings\",\"interrupt\":\"Interrupt Settings\"},\"UIOrder\":{\"software\":[\"*\"],\"hardware\":[\"lcenClccon\",\"lcmodeClccon\",\"*\"],\"interrupt\":[\"clci\",\"lcintpClccon\",\"lcintnClccon\",\"*\"]},\"tabs\":{\"main\":\"Easy View\",\"register\":\"Register Initialization\"},\"analytics\":{\"logAlwaysComps\":[\"lcmodeClccon\",\"lcenClccon\",\"clci\",\"lcintnClccon\",\"lcintpClccon\"],\"logOnChangeComps\":[],\"compMapping\":{\"lcmodeClccon\":\"CLC_Mode\",\"lcenClccon\":\"CLC_Enable\",\"clci\":\"CLC_Interrupt_Enable\",\"lcintnClccon\":\"CLC_Falling_Interrupt\",\"lcintpClccon\":\"CLC_Rising_Interrupt\"}},\"templates\":[{\"src\":\"output/cla_clc_stacked_v5.c.ftl\",\"dest\":\"clc/src/${sourceFileName}\",\"generateWithHardware\":true},{\"src\":\"output/cla_clc_stacked_v5.h.ftl\",\"dest\":\"clc/${headerFileName}\",\"generateWithHardware\":true}],\"imports\":{\"scf_pic8_clc_v1\":{\"import\":{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"isRequired\":true}},\"pin_standard\":{\"import\":{\"interfaceId\":{\"name\":\"pin-standard\",\"version\":\"0.1.0\"}}},\"initializer_system\":{\"nodeModule\":{\"importName\":\"systemInit\",\"node\":\"@microchip/initializer-system\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"initializer-system\",\"version\":\"^0.5.3\"}}},\"interrupt_standard\":{\"nodeModule\":{\"importName\":\"interrupt_standard\",\"node\":\"@microchip/interrupt-standard\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"interrupt-standard\",\"version\":\"^1.0.1\"}}},\"device_meta\":{\"import\":{\"interfaceId\":{\"name\":\"device-meta\",\"version\":\"^1.0.0\"}}},\"clc_connections\":{\"import\":{\"interfaceId\":{\"name\":\"clc-connections\",\"version\":\"0.1.0\"}}},\"CMP\":{\"import\":{\"interfaceId\":{\"name\":\"cmp-interface\",\"version\":\"0.1.0\"}}},\"HLVD\":{\"import\":{\"interfaceId\":{\"name\":\"hlvd-interface\",\"version\":\"^0.1.0\"}}},\"I2C\":{\"import\":{\"interfaceId\":{\"name\":\"i2c-host\",\"version\":\"^2.0.0\"}}},\"MSSP\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"NCO\":{\"import\":{\"interfaceId\":{\"name\":\"nco-interface\",\"version\":\"0.1.0\"}}},\"SPI\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"TMR0\":{\"import\":{\"interfaceId\":{\"name\":\"timer0_general_parameters\",\"version\":\"0.1.0\"}}},\"UART\":{\"import\":{\"interfaceId\":{\"name\":\"uart-basic\",\"version\":\"^4.0.0\"}}},\"ZCD\":{\"import\":{\"interfaceId\":{\"name\":\"zcd-output-parameters\",\"version\":\"1.0.0\"}}}},\"exports\":{\"clc\":{\"interfaces\":[{\"interfaceId\":{\"name\":\"cla-clc-stacked\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"trigger-source\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"signal-source\",\"version\":\"0.1.0\"}}]}},\"softwareData\":{\"componentName\":{\"name\":\"componentName\",\"description\":\"Custom Name\",\"type\":\"string\",\"defaultValue\":\"Module\",\"group\":\"software\",\"tabs\":[\"main\"],\"category\":\"software\",\"validation\":true},\"clcDepSelector\":{\"name\":\"clcDepSelector\",\"category\":\"import\",\"description\":\"CLC dependency selector\",\"type\":\"ComboBox\",\"group\":\"software\",\"importId\":\"scf_pic8_clc_v1\",\"tabs\":[\"main\"]},\"CLCI\":{\"name\":\"clci\",\"description\":\"Enable CLC Interrupt\",\"defaultValue\":false,\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"software\"}},\"peripherals\":[{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"interrupts\":[\"CLCI\"],\"registers\":{\"CLCSELECT\":[{\"setting\":\"SLCT\",\"name\":\"slctClcselect\",\"description\":\"CLC instance select bits\",\"type\":\"string\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"}],\"CLCCON\":[{\"setting\":\"LCMODE\",\"name\":\"lcmodeClccon\",\"description\":\"Logic Cell Mode bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTN\",\"name\":\"lcintnClccon\",\"description\":\"Enable Falling Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTP\",\"name\":\"lcintpClccon\",\"description\":\"Enable Rising Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCOUT\",\"name\":\"lcoutClccon\",\"description\":\"Logic Cell Data Output Status bit\",\"type\":\"boolean\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"},{\"setting\":\"LCEN\",\"name\":\"lcenClccon\",\"description\":\"Enable CLC\",\"type\":\"boolean\",\"group\":\"hardware\",\"overrideDefaultValue\":\"enabled\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}}],\"CLCPOL\":[{\"setting\":\"LCG1POL\",\"name\":\"lcg1polClcpol\",\"description\":\"Logic Cell Gate 1 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2POL\",\"name\":\"lcg2polClcpol\",\"description\":\"Logic Cell Gate 2 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3POL\",\"name\":\"lcg3polClcpol\",\"description\":\"Logic Cell Gate 3 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4POL\",\"name\":\"lcg4polClcpol\",\"description\":\"Logic Cell Gate 4 Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCPOL\",\"name\":\"lcpolClcpol\",\"description\":\"Logic Cell Output Polarity Control bit\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL0\":[{\"setting\":\"LCD1S\",\"name\":\"lcd1sClcsel0\",\"description\":\"Logic Cell Data1 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL1\":[{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel1\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL2\":[{\"setting\":\"LCD3S\",\"name\":\"lcd3sClcsel2\",\"description\":\"Logic Cell Data3 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCSEL3\":[{\"setting\":\"LCD4S\",\"name\":\"lcd4sClcsel3\",\"description\":\"Logic Cell Data4 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS0\":[{\"setting\":\"LCG1D1N\",\"name\":\"lcg1d1nClcgls0\",\"description\":\"Gate 1 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D1T\",\"name\":\"lcg1d1tClcgls0\",\"description\":\"Gate 1 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D2N\",\"name\":\"lcg1d2nClcgls0\",\"description\":\"Gate 1 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D2T\",\"name\":\"lcg1d2tClcgls0\",\"description\":\"Gate 1 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D3N\",\"name\":\"lcg1d3nClcgls0\",\"description\":\"Gate 1 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D3T\",\"name\":\"lcg1d3tClcgls0\",\"description\":\"Gate 1 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D4N\",\"name\":\"lcg1d4nClcgls0\",\"description\":\"Gate 1 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG1D4T\",\"name\":\"lcg1d4tClcgls0\",\"description\":\"Gate 1 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS1\":[{\"setting\":\"LCG2D1N\",\"name\":\"lcg2d1nClcgls1\",\"description\":\"Gate 2 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D1T\",\"name\":\"lcg2d1tClcgls1\",\"description\":\"Gate 2 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D2N\",\"name\":\"lcg2d2nClcgls1\",\"description\":\"Gate 2 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D2T\",\"name\":\"lcg2d2tClcgls1\",\"description\":\"Gate 2 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D3N\",\"name\":\"lcg2d3nClcgls1\",\"description\":\"Gate 2 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D3T\",\"name\":\"lcg2d3tClcgls1\",\"description\":\"Gate 2 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D4N\",\"name\":\"lcg2d4nClcgls1\",\"description\":\"Gate 2 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG2D4T\",\"name\":\"lcg2d4tClcgls1\",\"description\":\"Gate 2 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS2\":[{\"setting\":\"LCG3D1N\",\"name\":\"lcg3d1nClcgls2\",\"description\":\"Gate 3 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D1T\",\"name\":\"lcg3d1tClcgls2\",\"description\":\"Gate 3 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D2N\",\"name\":\"lcg3d2nClcgls2\",\"description\":\"Gate 3 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D2T\",\"name\":\"lcg3d2tClcgls2\",\"description\":\"Gate 3 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D3N\",\"name\":\"lcg3d3nClcgls2\",\"description\":\"Gate 3 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D3T\",\"name\":\"lcg3d3tClcgls2\",\"description\":\"Gate 3 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D4N\",\"name\":\"lcg3d4nClcgls2\",\"description\":\"Gate 3 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG3D4T\",\"name\":\"lcg3d4tClcgls2\",\"description\":\"Gate 3 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCGLS3\":[{\"setting\":\"LCG4D1N\",\"name\":\"lcg4d1nClcgls3\",\"description\":\"Gate 4 Data 1 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D1T\",\"name\":\"lcg4d1tClcgls3\",\"description\":\"Gate 4 Data 1 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D2N\",\"name\":\"lcg4d2nClcgls3\",\"description\":\"Gate 4 Data 2 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D2T\",\"name\":\"lcg4d2tClcgls3\",\"description\":\"Gate 4 Data 2 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D3N\",\"name\":\"lcg4d3nClcgls3\",\"description\":\"Gate 4 Data 3 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D3T\",\"name\":\"lcg4d3tClcgls3\",\"description\":\"Gate 4 Data 3 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D4N\",\"name\":\"lcg4d4nClcgls3\",\"description\":\"Gate 4 Data 4 Negated\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCG4D4T\",\"name\":\"lcg4d4tClcgls3\",\"description\":\"Gate 4 Data 4 True\",\"type\":\"boolean\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"}],\"CLCDATA\":[{\"setting\":\"LCOUT\",\"name\":\"lcoutClcdata\",\"description\":\"CLC8 output bit\",\"type\":\"string\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"}]}}]}");
4925
5089
 
4926
5090
  /***/ }),
4927
5091
 
@@ -4945,7 +5109,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
4945
5109
 
4946
5110
  __webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
4947
5111
  __webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
4948
- module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/d_Content_scf-pic8-clc-v1_4.0.13/generated_module/src/autoCreator.ts */"./generated_module/src/autoCreator.ts");
5112
+ module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/d_Content_scf-pic8-clc-v1_4.0.14/generated_module/src/autoCreator.ts */"./generated_module/src/autoCreator.ts");
4949
5113
 
4950
5114
 
4951
5115
  /***/ })