@mchp-mcc/scf-pic8-clc-v1 4.1.0 → 4.1.2

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.
@@ -269,52 +269,23 @@ var getPinsLogic = function getPinsLogic() {
269
269
 
270
270
  /***/ }),
271
271
 
272
- /***/ "./node_modules/@microchip/pin-standard/lib/index.js":
273
- /*!***********************************************************!*\
274
- !*** ./node_modules/@microchip/pin-standard/lib/index.js ***!
275
- \***********************************************************/
276
- /*! no static exports found */
277
- /***/ (function(module, exports, __webpack_require__) {
278
-
279
- "use strict";
280
-
281
- Object.defineProperty(exports, "__esModule", { value: true });
282
- var pin_standard_1 = __webpack_require__(/*! ./pin-standard */ "./node_modules/@microchip/pin-standard/lib/pin-standard.js");
283
- exports.pin_standard = pin_standard_1.pin_standard;
284
- exports.pin_state = pin_standard_1.pin_state;
285
- exports.direction = pin_standard_1.direction;
286
- exports.behaviour = pin_standard_1.behaviour;
287
- exports.data_schema = pin_standard_1.data_schema;
288
- exports.pin_attribs_enum = pin_standard_1.pin_attribs_enum;
289
- exports.actiontype = pin_standard_1.actiontype;
290
- exports.QueryAdapterKey = pin_standard_1.QueryAdapterKey;
291
- //# sourceMappingURL=index.js.map
292
-
293
- /***/ }),
294
-
295
- /***/ "./node_modules/@microchip/pin-standard/lib/pin-standard.js":
296
- /*!******************************************************************!*\
297
- !*** ./node_modules/@microchip/pin-standard/lib/pin-standard.js ***!
298
- \******************************************************************/
272
+ /***/ "./node_modules/@microchip/pins-interface/lib/types.js":
273
+ /*!*************************************************************!*\
274
+ !*** ./node_modules/@microchip/pins-interface/lib/types.js ***!
275
+ \*************************************************************/
299
276
  /*! no static exports found */
300
277
  /***/ (function(module, exports, __webpack_require__) {
301
278
 
302
279
  "use strict";
303
280
 
304
281
  Object.defineProperty(exports, "__esModule", { value: true });
305
- exports.pin_standard = function () {
306
- return {
307
- interfaceId: {
308
- name: "pin-standard",
309
- version: "0.1.0",
310
- },
311
- };
312
- };
282
+ exports.data_schema = exports.PIN_ARCH = exports.behaviour = exports.direction = exports.actiontype = exports.pin_attribs_enum = exports.pin_interrupts_enum = exports.pin_state = exports.QueryAdapterKey = void 0;
313
283
  var QueryAdapterKey;
314
284
  (function (QueryAdapterKey) {
315
285
  QueryAdapterKey["ALLPINS"] = "allpins";
316
286
  QueryAdapterKey["ALLPINS_FOR_ATTRIBS"] = "allpins_for_attribs";
317
287
  QueryAdapterKey["PPS"] = "pps";
288
+ QueryAdapterKey["APFCON"] = "apfcon";
318
289
  QueryAdapterKey["PORTMUX"] = "portmux";
319
290
  QueryAdapterKey["HASPPS"] = "hasPPS";
320
291
  })(QueryAdapterKey = exports.QueryAdapterKey || (exports.QueryAdapterKey = {}));
@@ -376,6 +347,13 @@ var behaviour;
376
347
  behaviour["EXCLUSIVE_LOCK"] = "EXCLUSIVE_LOCK";
377
348
  behaviour["LOCKED_DISABLED"] = "LOCKED_DISABLED";
378
349
  })(behaviour = exports.behaviour || (exports.behaviour = {}));
350
+ var PIN_ARCH;
351
+ (function (PIN_ARCH) {
352
+ PIN_ARCH["PIC18F"] = "PIC18F";
353
+ PIN_ARCH["AVR8"] = "AVR8";
354
+ PIN_ARCH["PIC16F"] = "PIC16F";
355
+ PIN_ARCH["PIC24F"] = "PIC24F";
356
+ })(PIN_ARCH = exports.PIN_ARCH || (exports.PIN_ARCH = {}));
379
357
  //------------------------------------ schema ------------------------------------//
380
358
  exports.data_schema = {
381
359
  $schema: "http://json-schema.org/draft-07/schema#",
@@ -561,7 +539,7 @@ exports.data_schema = {
561
539
  },
562
540
  },
563
541
  };
564
- //# sourceMappingURL=pin-standard.js.map
542
+ //# sourceMappingURL=types.js.map
565
543
 
566
544
  /***/ }),
567
545
 
@@ -653,7 +631,7 @@ function mapOptionLabels(populatedImport, labelFactory) {
653
631
  return populatedImport;
654
632
  }
655
633
  exports.mapOptionLabels = mapOptionLabels;
656
- //# sourceMappingURL=Processor.js.map
634
+
657
635
 
658
636
  /***/ }),
659
637
 
@@ -782,7 +760,7 @@ var CalculateRegisterValue = /** @class */ (function () {
782
760
  var value = registerValue;
783
761
  value &= ~setting.getMask(); // Clear bits
784
762
  value |= setting.getShiftedValue(); // Set bits
785
- return value;
763
+ return value >>> 0;
786
764
  };
787
765
  this.getUnmodifiedSettings = function () {
788
766
  var _a, _b;
@@ -885,7 +863,7 @@ var OptionSettingValue = /** @class */ (function (_super) {
885
863
  };
886
864
  return OptionSettingValue;
887
865
  }(SettingValue));
888
- //# sourceMappingURL=CalculateRegisterValue.js.map
866
+
889
867
 
890
868
  /***/ }),
891
869
 
@@ -905,7 +883,7 @@ var getSettingByAlias = function (alias, register) {
905
883
  return (_a = register.settings) === null || _a === void 0 ? void 0 : _a[alias];
906
884
  };
907
885
  exports.getSettingByAlias = getSettingByAlias;
908
- //# sourceMappingURL=Register.js.map
886
+
909
887
 
910
888
  /***/ }),
911
889
 
@@ -959,8 +937,12 @@ var getBitRange = function (setting) {
959
937
  };
960
938
  exports.getBitRange = getBitRange;
961
939
  var getOptionByAlias = function (alias, setting) {
962
- var _a;
963
- return (0, Arrays_1.find)((_a = setting === null || setting === void 0 ? void 0 : setting.options) !== null && _a !== void 0 ? _a : [], function (option) { return option.alias == alias; });
940
+ var _a, _b;
941
+ var result = (0, Arrays_1.find)((_a = setting === null || setting === void 0 ? void 0 : setting.options) !== null && _a !== void 0 ? _a : [], function (option) { return option.alias == alias; });
942
+ if (!result) {
943
+ result = (0, Arrays_1.find)((_b = setting === null || setting === void 0 ? void 0 : setting.options) !== null && _b !== void 0 ? _b : [], function (option) { return option.description == alias; });
944
+ }
945
+ return result;
964
946
  };
965
947
  exports.getOptionByAlias = getOptionByAlias;
966
948
  var getOptionByName = function (name, setting) {
@@ -995,7 +977,7 @@ function getBitRangeLow(processedHex) {
995
977
  return processedHex.length - 1;
996
978
  }
997
979
  }
998
- //# sourceMappingURL=Setting.js.map
980
+
999
981
 
1000
982
  /***/ }),
1001
983
 
@@ -1054,7 +1036,7 @@ var values = function (obj) {
1054
1036
  return (_a = (0, exports.getKeys)(obj)) === null || _a === void 0 ? void 0 : _a.map(function (key) { return obj[key]; });
1055
1037
  };
1056
1038
  exports.values = values;
1057
- //# sourceMappingURL=Arrays.js.map
1039
+
1058
1040
 
1059
1041
  /***/ }),
1060
1042
 
@@ -4177,7 +4159,7 @@ var OPTION_MODULES = {
4177
4159
  CWG3A_OUT: "CWG3",
4178
4160
  CWG3B_OUT: "CWG3"
4179
4161
  };
4180
- var ALWAYS_IMPORT_IMPORTKEYS = ["pin_standard", "initializer_system", "scf_pic8_clc_v1", "device_meta", "interrupt_standard", "clc_connections"];
4162
+ var ALWAYS_IMPORT_IMPORTKEYS = ["pins_interface", "initializer_system", "scf_pic8_clc_v1", "device_meta", "interrupt_standard", "clc_connections"];
4181
4163
 
4182
4164
  /***/ }),
4183
4165
 
@@ -4242,8 +4224,8 @@ __webpack_require__.r(__webpack_exports__);
4242
4224
  /* 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");
4243
4225
  /* 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");
4244
4226
  /* harmony import */ var _microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(_microchip_scf_validators_lib__WEBPACK_IMPORTED_MODULE_12__);
4245
- /* harmony import */ var _microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @microchip/pin-standard/lib/pin-standard */ "./node_modules/@microchip/pin-standard/lib/pin-standard.js");
4246
- /* harmony import */ var _microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(_microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13__);
4227
+ /* harmony import */ var _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @microchip/pins-interface/lib/types */ "./node_modules/@microchip/pins-interface/lib/types.js");
4228
+ /* harmony import */ var _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(_microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__);
4247
4229
  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; }
4248
4230
 
4249
4231
  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; }
@@ -4332,7 +4314,7 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4332
4314
  getPinsLogic: _generated_module_src_pins_PCPHelper__WEBPACK_IMPORTED_MODULE_11__["getPinsLogic"],
4333
4315
  componentNameValidator: _this.componentNameValidator,
4334
4316
  getCustomUiErrors: _this.getCustomUiErrors,
4335
- pin_standard_args: _this.getPinstandardArgs
4317
+ pins_interface_args: _this.getPinsinterfaceArgs
4336
4318
  });
4337
4319
  });
4338
4320
 
@@ -4405,9 +4387,9 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4405
4387
  return _this.gateDerivedSettings;
4406
4388
  });
4407
4389
 
4408
- _defineProperty(this, "getPinstandardArgs", function () {
4390
+ _defineProperty(this, "getPinsinterfaceArgs", function () {
4409
4391
  var args = {
4410
- queryAdapterMap: _defineProperty({}, _microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].ALLPINS, "^CLC.*$")
4392
+ queryAdapters: [_microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].PPS, _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].APFCON]
4411
4393
  };
4412
4394
  return args;
4413
4395
  });
@@ -4655,7 +4637,9 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4655
4637
  _defineProperty(this, "friendlyImportName", function (importKey) {
4656
4638
  if (importKey === "scf_pic8_clc_v1") {
4657
4639
  return "CLC Hardware";
4658
- }
4640
+ } // if (importKey === "initializer_system") return "system.c Initilizer()";
4641
+ // if(importKey=== "pins_interface") return "Pins";
4642
+
4659
4643
 
4660
4644
  return undefined;
4661
4645
  });
@@ -4905,15 +4889,14 @@ _defineProperty(InputStateCalculator, "getNextState", function (gateInputState)
4905
4889
  __webpack_require__.r(__webpack_exports__);
4906
4890
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCompletePinData", function() { return getCompletePinData; });
4907
4891
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRowData", function() { return getRowData; });
4908
- /* harmony import */ var _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microchip/pin-standard */ "./node_modules/@microchip/pin-standard/lib/index.js");
4909
- /* harmony import */ var _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__);
4892
+ /* harmony import */ var _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microchip/pins-interface/lib/types */ "./node_modules/@microchip/pins-interface/lib/types.js");
4893
+ /* harmony import */ var _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__);
4910
4894
  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; }
4911
4895
 
4912
4896
  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; }
4913
4897
 
4914
4898
  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; }
4915
4899
 
4916
- //import { pin_row } from "@microchip/pin-standard";
4917
4900
 
4918
4901
  // provide complete dynamic data for all pin rows. It overrides static pindata.json
4919
4902
  var getCompletePinData = function getCompletePinData(appModel) {
@@ -4922,39 +4905,40 @@ var getCompletePinData = function getCompletePinData(appModel) {
4922
4905
  }; // overrides pin data for a particular row based on model.
4923
4906
 
4924
4907
  function getRowData(appModel, rowData) {
4925
- var _appModel$getHardware, _appModel$getHardware2, _appModel$getImportVa, _appModel$getComponen, _appModel$getComponen2, _appModel$getComponen3;
4908
+ var _appModel$getImportVa, _appModel$getImportVa2, _appModel$getImportVa3, _appModel$getImportVa4, _appModel$getImportVa5, _appModel$getImportVa6, _appModel$getHardware, _appModel$getHardware2, _appModel$getComponen, _appModel$getComponen2, _appModel$getComponen3;
4926
4909
 
4927
4910
  var retRowJSONdata = rowData;
4911
+ var getPPSPins = (_appModel$getImportVa = appModel.getImportValue("pins_interface")) === null || _appModel$getImportVa === void 0 ? void 0 : (_appModel$getImportVa2 = _appModel$getImportVa["pps"]) === null || _appModel$getImportVa2 === void 0 ? void 0 : (_appModel$getImportVa3 = _appModel$getImportVa2["data"]) === null || _appModel$getImportVa3 === void 0 ? void 0 : _appModel$getImportVa3[appModel.getName()];
4912
+ var getAPFCONPins = (_appModel$getImportVa4 = appModel.getImportValue("pins_interface")) === null || _appModel$getImportVa4 === void 0 ? void 0 : (_appModel$getImportVa5 = _appModel$getImportVa4["apfcon"]) === null || _appModel$getImportVa5 === void 0 ? void 0 : (_appModel$getImportVa6 = _appModel$getImportVa5["data"]) === null || _appModel$getImportVa6 === void 0 ? void 0 : _appModel$getImportVa6[appModel.getName()];
4928
4913
  var moduleName = (_appModel$getHardware = (_appModel$getHardware2 = appModel.getHardware()) === null || _appModel$getHardware2 === void 0 ? void 0 : _appModel$getHardware2.getName()) !== null && _appModel$getHardware !== void 0 ? _appModel$getHardware : "CLC";
4929
- var allPinsData = (_appModel$getImportVa = appModel.getImportValue("pin_standard")) === null || _appModel$getImportVa === void 0 ? void 0 : _appModel$getImportVa.allpins;
4930
- var modulePins = getModulePins(allPinsData, moduleName);
4931
- var pinName = getPinName(modulePins, retRowJSONdata.filter.aliasReEx);
4932
- var pinBehaviour = getpinBehaviour(allPinsData, moduleName, pinName);
4933
- var isPPS = pinBehaviour === "pps";
4934
- var isAPFCON = pinBehaviour === "apfcon";
4935
4914
  var inputSelections = [appModel.getComponentValue("lcd1sClcsel0"), (_appModel$getComponen = appModel.getComponentValue("lcd2sClcsel1")) !== null && _appModel$getComponen !== void 0 ? _appModel$getComponen : appModel.getComponentValue("lcd2sClcsel0"), (_appModel$getComponen2 = appModel.getComponentValue("lcd3sClcsel2")) !== null && _appModel$getComponen2 !== void 0 ? _appModel$getComponen2 : appModel.getComponentValue("lcd3sClcsel1"), (_appModel$getComponen3 = appModel.getComponentValue("lcd4sClcsel3")) !== null && _appModel$getComponen3 !== void 0 ? _appModel$getComponen3 : appModel.getComponentValue("lcd4sClcsel1")];
4936
- retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4937
- module: moduleName,
4938
- filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4939
- module: moduleName
4940
- }),
4941
- behaviour: isPPS ? _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS : isAPFCON ? _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].APFCON : _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].LOCK_UNLOCK
4942
- });
4943
4915
 
4944
- if (rowData.name === "clcout" && !isPPS && !isAPFCON) {
4916
+ if (rowData.name === "clcout" && getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx)) {
4945
4917
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4946
- "function": moduleName,
4947
4918
  module: moduleName,
4948
- filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4919
+ "function": moduleName,
4920
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4921
+ filter: {
4949
4922
  module: moduleName,
4950
- aliasReEx: "^".concat(moduleName, "$")
4951
- })
4923
+ aliasReEx: "^".concat(moduleName, "$|^").concat(moduleName, "OUT$")
4924
+ }
4952
4925
  });
4953
4926
  } else if (rowData.name === "clcin0") {
4954
4927
  if (inputSelections.indexOf("CLCIN0 (CLCIN0PPS)") !== -1) {
4955
- retRowJSONdata = _objectSpread({}, retRowJSONdata);
4928
+ retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4929
+ module: moduleName,
4930
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4931
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4932
+ module: moduleName
4933
+ })
4934
+ });
4956
4935
  } else if (inputSelections.indexOf("CLCIN0") !== -1) {
4957
4936
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4937
+ module: moduleName,
4938
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4939
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4940
+ module: moduleName
4941
+ }),
4958
4942
  behaviourMeta: {
4959
4943
  lockPinRegEx: "^CLC[1-9]IN0$"
4960
4944
  }
@@ -4964,9 +4948,20 @@ function getRowData(appModel, rowData) {
4964
4948
  }
4965
4949
  } else if (rowData.name === "clcin1") {
4966
4950
  if (inputSelections.indexOf("CLCIN1 (CLCIN1PPS)") !== -1) {
4967
- retRowJSONdata = _objectSpread({}, retRowJSONdata);
4951
+ retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4952
+ module: moduleName,
4953
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4954
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4955
+ module: moduleName
4956
+ })
4957
+ });
4968
4958
  } else if (inputSelections.indexOf("CLCIN1") !== -1) {
4969
4959
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4960
+ module: moduleName,
4961
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4962
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4963
+ module: moduleName
4964
+ }),
4970
4965
  behaviourMeta: {
4971
4966
  lockPinRegEx: "^CLC[1-9]IN1$"
4972
4967
  }
@@ -4978,10 +4973,9 @@ function getRowData(appModel, rowData) {
4978
4973
  if (inputSelections.indexOf("CLCIN2 (CLCIN2PPS)") !== -1) {
4979
4974
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4980
4975
  module: moduleName,
4981
- attribs: [{
4982
- aliasReEx: ".*",
4983
- analog: false
4984
- }]
4976
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4977
+ module: moduleName
4978
+ })
4985
4979
  });
4986
4980
  } else {
4987
4981
  return undefined; // hide row
@@ -4989,10 +4983,10 @@ function getRowData(appModel, rowData) {
4989
4983
  } else if (rowData.name === "clcin3") {
4990
4984
  if (inputSelections.indexOf("CLCIN3 (CLCIN3PPS)") !== -1) {
4991
4985
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
4992
- attribs: [{
4993
- aliasReEx: ".*",
4994
- analog: false
4995
- }]
4986
+ module: moduleName,
4987
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4988
+ module: moduleName
4989
+ })
4996
4990
  });
4997
4991
  } else {
4998
4992
  return undefined; // hide row
@@ -5000,10 +4994,10 @@ function getRowData(appModel, rowData) {
5000
4994
  } else if (rowData.name === "clcin4") {
5001
4995
  if (inputSelections.indexOf("CLCIN4 (CLCIN4PPS)") !== -1) {
5002
4996
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
5003
- attribs: [{
5004
- aliasReEx: ".*",
5005
- analog: false
5006
- }]
4997
+ module: moduleName,
4998
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
4999
+ module: moduleName
5000
+ })
5007
5001
  });
5008
5002
  } else {
5009
5003
  return undefined; // hide row
@@ -5011,10 +5005,10 @@ function getRowData(appModel, rowData) {
5011
5005
  } else if (rowData.name === "clcin5") {
5012
5006
  if (inputSelections.indexOf("CLCIN5 (CLCIN5PPS)") !== -1) {
5013
5007
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
5014
- attribs: [{
5015
- aliasReEx: ".*",
5016
- analog: false
5017
- }]
5008
+ module: moduleName,
5009
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
5010
+ module: moduleName
5011
+ })
5018
5012
  });
5019
5013
  } else {
5020
5014
  return undefined; // hide row
@@ -5022,10 +5016,10 @@ function getRowData(appModel, rowData) {
5022
5016
  } else if (rowData.name === "clcin6") {
5023
5017
  if (inputSelections.indexOf("CLCIN6 (CLCIN6PPS)") !== -1) {
5024
5018
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
5025
- attribs: [{
5026
- aliasReEx: ".*",
5027
- analog: false
5028
- }]
5019
+ module: moduleName,
5020
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
5021
+ module: moduleName
5022
+ })
5029
5023
  });
5030
5024
  } else {
5031
5025
  return undefined; // hide row
@@ -5033,17 +5027,17 @@ function getRowData(appModel, rowData) {
5033
5027
  } else if (rowData.name === "clcin7") {
5034
5028
  if (inputSelections.indexOf("CLCIN7 (CLCIN7PPS)") !== -1) {
5035
5029
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
5036
- attribs: [{
5037
- aliasReEx: ".*",
5038
- analog: false
5039
- }]
5030
+ module: moduleName,
5031
+ filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
5032
+ module: moduleName
5033
+ })
5040
5034
  });
5041
5035
  } else {
5042
5036
  return undefined; // hide row
5043
5037
  }
5044
5038
  }
5045
5039
 
5046
- if (!isPPS && !isAPFCON) {
5040
+ if (getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx) === "LOCK_UNLOCK") {
5047
5041
  var _appModel$getAutoModu, _appModel$getAutoModu2, _appModel$getAutoModu3, _appModel$getAutoModu4;
5048
5042
 
5049
5043
  var rowActions = []; // attach actions if pin to register update is required
@@ -5088,48 +5082,34 @@ function getRowData(appModel, rowData) {
5088
5082
  }
5089
5083
  }
5090
5084
 
5091
- var getModulePins = function getModulePins(allPins, moduleName) {
5092
- var pins = [];
5093
-
5094
- for (var portPin in allPins) {
5095
- var _allPins$portPin;
5085
+ var getpinBehaviour = function getpinBehaviour(apfconPins, ppsPins, regEx) {
5086
+ var pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].LOCK_UNLOCK;
5096
5087
 
5097
- var modulePins = (_allPins$portPin = allPins[portPin]) === null || _allPins$portPin === void 0 ? void 0 : _allPins$portPin[moduleName];
5098
-
5099
- for (var modulePin in modulePins) {
5100
- if (pins.indexOf(modulePin) === -1) {
5101
- pins.push(modulePin);
5088
+ if (apfconPins) {
5089
+ for (var key in apfconPins) {
5090
+ if (key.match(regEx)) {
5091
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].APFCON;
5102
5092
  }
5103
5093
  }
5104
5094
  }
5105
5095
 
5106
- return pins;
5107
- };
5108
-
5109
- var getPinName = function getPinName(modulePins, regEx) {
5110
- var pinName = "";
5111
- modulePins.forEach(function (pin) {
5112
- if (pin.match(new RegExp(regEx, "g"))) {
5113
- pinName = pin;
5114
- }
5115
- });
5116
- return pinName;
5117
- };
5118
-
5119
- var getpinBehaviour = function getpinBehaviour(allPins, moduleName, pinName) {
5120
- for (var portPin in allPins) {
5121
- var _allPins$portPin2, _allPins$portPin2$mod;
5122
-
5123
- var pinData = (_allPins$portPin2 = allPins[portPin]) === null || _allPins$portPin2 === void 0 ? void 0 : (_allPins$portPin2$mod = _allPins$portPin2[moduleName]) === null || _allPins$portPin2$mod === void 0 ? void 0 : _allPins$portPin2$mod[pinName];
5124
-
5125
- if (pinData === null || pinData === void 0 ? void 0 : pinData["pps"]) {
5126
- return "pps";
5127
- } else if (pinData === null || pinData === void 0 ? void 0 : pinData["apfcon"]) {
5128
- return "apfcon";
5096
+ if (ppsPins) {
5097
+ for (var _key in ppsPins) {
5098
+ if (_key === "pps_out") {
5099
+ for (var key1 in ppsPins[_key]) {
5100
+ if (key1.match(regEx)) {
5101
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5102
+ }
5103
+ }
5104
+ } else {
5105
+ if (_key.match(regEx)) {
5106
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5107
+ }
5108
+ }
5129
5109
  }
5130
5110
  }
5131
5111
 
5132
- return "lock_unlock";
5112
+ return pinBehaviour;
5133
5113
  };
5134
5114
 
5135
5115
  /***/ }),
@@ -5413,7 +5393,7 @@ var Interface = {
5413
5393
  /*! exports provided: moduleName, deviceType, hasPins, booleanValues, help, UIGroups, UIOrder, tabs, analytics, templates, imports, exports, softwareData, peripherals, default */
5414
5394
  /***/ (function(module) {
5415
5395
 
5416
- 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.*\"}}},\"initializer_system\":{\"nodeModule\":{\"importName\":\"systemInit\",\"node\":\"@microchip/initializer-system\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"initializer-system\",\"version\":\"^0.*\"}}},\"interrupt_standard\":{\"nodeModule\":{\"importName\":\"interrupt_standard\",\"node\":\"@microchip/interrupt-standard\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"interrupt-standard\",\"version\":\"^1.*\"}}},\"device_meta\":{\"import\":{\"interfaceId\":{\"name\":\"device-meta\",\"version\":\"^1.*\"}}},\"clc_connections\":{\"import\":{\"interfaceId\":{\"name\":\"clc-connections\",\"version\":\"0.*\"}}},\"CMP\":{\"import\":{\"interfaceId\":{\"name\":\"cmp-interface\",\"version\":\"0.1.0\"}}},\"HLVD\":{\"import\":{\"interfaceId\":{\"name\":\"hlvd-interface\",\"version\":\"^0.*\"}}},\"I2C\":{\"import\":{\"interfaceId\":{\"name\":\"i2c-host\",\"version\":\"^2.*\"}}},\"MSSP\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"NCO\":{\"import\":{\"interfaceId\":{\"name\":\"nco-interface\",\"version\":\"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.*\"}}},\"ZCD\":{\"import\":{\"interfaceId\":{\"name\":\"zcd-output-parameters\",\"version\":\"1.*\"}}}},\"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\":\"LCOE\",\"name\":\"lcoeClccon\",\"category\":\"hardware\",\"description\":\"Logic Cell Output Enable bit\",\"type\":\"boolean\",\"group\":\"hardware\",\"tabs\":[\"main\"]},{\"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\"},{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel0\",\"category\":\"hardware\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]}],\"CLCSEL1\":[{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel1\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCD3S\",\"name\":\"lcd3sClcsel1\",\"category\":\"hardware\",\"description\":\"Logic Cell Data3 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]},{\"setting\":\"LCD4S\",\"name\":\"lcd4sClcsel1\",\"category\":\"hardware\",\"description\":\"Logic Cell Data4 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]}],\"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\"}]}}]}");
5396
+ 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}},\"pins_interface\":{\"import\":{\"interfaceId\":{\"name\":\"pins-interface\",\"version\":\"1.*\"}}},\"initializer_system\":{\"nodeModule\":{\"importName\":\"systemInit\",\"node\":\"@microchip/initializer-system\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"initializer-system\",\"version\":\"^0.*\"}}},\"interrupt_standard\":{\"nodeModule\":{\"importName\":\"interrupt_standard\",\"node\":\"@microchip/interrupt-standard\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"interrupt-standard\",\"version\":\"^1.*\"}}},\"device_meta\":{\"import\":{\"interfaceId\":{\"name\":\"device-meta\",\"version\":\"^1.*\"}}},\"clc_connections\":{\"import\":{\"interfaceId\":{\"name\":\"clc-connections\",\"version\":\"0.*\"}}},\"CMP\":{\"import\":{\"interfaceId\":{\"name\":\"cmp-interface\",\"version\":\"0.1.0\"}}},\"HLVD\":{\"import\":{\"interfaceId\":{\"name\":\"hlvd-interface\",\"version\":\"^0.*\"}}},\"I2C\":{\"import\":{\"interfaceId\":{\"name\":\"i2c-host\",\"version\":\"^2.*\"}}},\"MSSP\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"NCO\":{\"import\":{\"interfaceId\":{\"name\":\"nco-interface\",\"version\":\"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.*\"}}},\"ZCD\":{\"import\":{\"interfaceId\":{\"name\":\"zcd-output-parameters\",\"version\":\"1.*\"}}}},\"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\":\"LCOE\",\"name\":\"lcoeClccon\",\"category\":\"hardware\",\"description\":\"Logic Cell Output Enable bit\",\"type\":\"boolean\",\"group\":\"hardware\",\"tabs\":[\"main\"]},{\"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\"},{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel0\",\"category\":\"hardware\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]}],\"CLCSEL1\":[{\"setting\":\"LCD2S\",\"name\":\"lcd2sClcsel1\",\"description\":\"Logic Cell Data2 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"],\"category\":\"hardware\"},{\"setting\":\"LCD3S\",\"name\":\"lcd3sClcsel1\",\"category\":\"hardware\",\"description\":\"Logic Cell Data3 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]},{\"setting\":\"LCD4S\",\"name\":\"lcd4sClcsel1\",\"category\":\"hardware\",\"description\":\"Logic Cell Data4 Input Selection bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"isVisibleProperty\":\"showCanvasBased\",\"tabs\":[\"main\"]}],\"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\"}]}}]}");
5417
5397
 
5418
5398
  /***/ }),
5419
5399
 
@@ -5437,7 +5417,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
5437
5417
 
5438
5418
  __webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
5439
5419
  __webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
5440
- module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.1.0/generated_module/src/autoCreator.ts */"./generated_module/src/autoCreator.ts");
5420
+ module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.1.2/generated_module/src/autoCreator.ts */"./generated_module/src/autoCreator.ts");
5441
5421
 
5442
5422
 
5443
5423
  /***/ })