@mchp-mcc/scf-pic8-clc-v1 4.1.1 → 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.
package/Changelog.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [4.1.2] - 2023-12-21
5
+
6
+ ### Improvements
7
+ - **CC8SCRIP-19015** :- Fixed Missing CLC Output pin issue
8
+
9
+
4
10
  ## [4.1.1] - 2023-10-10
5
11
 
6
12
  ### New Features
@@ -19,9 +25,3 @@ All notable changes to this project will be documented in this file.
19
25
 
20
26
  ### Improvements
21
27
  - **CC8SCRIP-17727** :- Removed automatic loading of peripherals when selected as an input source
22
-
23
-
24
- ## [4.0.15] - 2023-08-09
25
-
26
- ### New Features
27
- - **CC8SCRIP-17337** :- Added support for PIC12/16(L)F150x device family
package/Readme.md CHANGED
@@ -7,6 +7,12 @@ 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.1.2] - 2023-12-21
11
+
12
+ ### Improvements
13
+ - **CC8SCRIP-19015** :- Fixed Missing CLC Output pin issue
14
+
15
+
10
16
  ## [4.1.1] - 2023-10-10
11
17
 
12
18
  ### New Features
@@ -25,9 +31,3 @@ All notable changes to this project will be documented in this file.
25
31
 
26
32
  ### Improvements
27
33
  - **CC8SCRIP-17727** :- Removed automatic loading of peripherals when selected as an input source
28
-
29
-
30
- ## [4.0.15] - 2023-08-09
31
-
32
- ### New Features
33
- - **CC8SCRIP-17337** :- Added support for PIC12/16(L)F150x device family
@@ -269,47 +269,17 @@ 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";
@@ -377,6 +347,13 @@ var behaviour;
377
347
  behaviour["EXCLUSIVE_LOCK"] = "EXCLUSIVE_LOCK";
378
348
  behaviour["LOCKED_DISABLED"] = "LOCKED_DISABLED";
379
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 = {}));
380
357
  //------------------------------------ schema ------------------------------------//
381
358
  exports.data_schema = {
382
359
  $schema: "http://json-schema.org/draft-07/schema#",
@@ -562,7 +539,7 @@ exports.data_schema = {
562
539
  },
563
540
  },
564
541
  };
565
- //# sourceMappingURL=pin-standard.js.map
542
+ //# sourceMappingURL=types.js.map
566
543
 
567
544
  /***/ }),
568
545
 
@@ -654,7 +631,7 @@ function mapOptionLabels(populatedImport, labelFactory) {
654
631
  return populatedImport;
655
632
  }
656
633
  exports.mapOptionLabels = mapOptionLabels;
657
- //# sourceMappingURL=Processor.js.map
634
+
658
635
 
659
636
  /***/ }),
660
637
 
@@ -783,7 +760,7 @@ var CalculateRegisterValue = /** @class */ (function () {
783
760
  var value = registerValue;
784
761
  value &= ~setting.getMask(); // Clear bits
785
762
  value |= setting.getShiftedValue(); // Set bits
786
- return value;
763
+ return value >>> 0;
787
764
  };
788
765
  this.getUnmodifiedSettings = function () {
789
766
  var _a, _b;
@@ -886,7 +863,7 @@ var OptionSettingValue = /** @class */ (function (_super) {
886
863
  };
887
864
  return OptionSettingValue;
888
865
  }(SettingValue));
889
- //# sourceMappingURL=CalculateRegisterValue.js.map
866
+
890
867
 
891
868
  /***/ }),
892
869
 
@@ -906,7 +883,7 @@ var getSettingByAlias = function (alias, register) {
906
883
  return (_a = register.settings) === null || _a === void 0 ? void 0 : _a[alias];
907
884
  };
908
885
  exports.getSettingByAlias = getSettingByAlias;
909
- //# sourceMappingURL=Register.js.map
886
+
910
887
 
911
888
  /***/ }),
912
889
 
@@ -960,8 +937,12 @@ var getBitRange = function (setting) {
960
937
  };
961
938
  exports.getBitRange = getBitRange;
962
939
  var getOptionByAlias = function (alias, setting) {
963
- var _a;
964
- 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;
965
946
  };
966
947
  exports.getOptionByAlias = getOptionByAlias;
967
948
  var getOptionByName = function (name, setting) {
@@ -996,7 +977,7 @@ function getBitRangeLow(processedHex) {
996
977
  return processedHex.length - 1;
997
978
  }
998
979
  }
999
- //# sourceMappingURL=Setting.js.map
980
+
1000
981
 
1001
982
  /***/ }),
1002
983
 
@@ -1055,7 +1036,7 @@ var values = function (obj) {
1055
1036
  return (_a = (0, exports.getKeys)(obj)) === null || _a === void 0 ? void 0 : _a.map(function (key) { return obj[key]; });
1056
1037
  };
1057
1038
  exports.values = values;
1058
- //# sourceMappingURL=Arrays.js.map
1039
+
1059
1040
 
1060
1041
  /***/ }),
1061
1042
 
@@ -4178,7 +4159,7 @@ var OPTION_MODULES = {
4178
4159
  CWG3A_OUT: "CWG3",
4179
4160
  CWG3B_OUT: "CWG3"
4180
4161
  };
4181
- 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"];
4182
4163
 
4183
4164
  /***/ }),
4184
4165
 
@@ -4243,8 +4224,8 @@ __webpack_require__.r(__webpack_exports__);
4243
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");
4244
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");
4245
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__);
4246
- /* 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");
4247
- /* 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__);
4248
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; }
4249
4230
 
4250
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; }
@@ -4333,7 +4314,7 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4333
4314
  getPinsLogic: _generated_module_src_pins_PCPHelper__WEBPACK_IMPORTED_MODULE_11__["getPinsLogic"],
4334
4315
  componentNameValidator: _this.componentNameValidator,
4335
4316
  getCustomUiErrors: _this.getCustomUiErrors,
4336
- pin_standard_args: _this.getPinstandardArgs
4317
+ pins_interface_args: _this.getPinsinterfaceArgs
4337
4318
  });
4338
4319
  });
4339
4320
 
@@ -4406,9 +4387,9 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4406
4387
  return _this.gateDerivedSettings;
4407
4388
  });
4408
4389
 
4409
- _defineProperty(this, "getPinstandardArgs", function () {
4390
+ _defineProperty(this, "getPinsinterfaceArgs", function () {
4410
4391
  var args = {
4411
- queryAdapters: [_microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].PPS, _microchip_pin_standard_lib_pin_standard__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].APFCON]
4392
+ queryAdapters: [_microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].PPS, _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_13__["QueryAdapterKey"].APFCON]
4412
4393
  };
4413
4394
  return args;
4414
4395
  });
@@ -4656,7 +4637,9 @@ var MyDerivedData = function MyDerivedData(dataModel) {
4656
4637
  _defineProperty(this, "friendlyImportName", function (importKey) {
4657
4638
  if (importKey === "scf_pic8_clc_v1") {
4658
4639
  return "CLC Hardware";
4659
- }
4640
+ } // if (importKey === "initializer_system") return "system.c Initilizer()";
4641
+ // if(importKey=== "pins_interface") return "Pins";
4642
+
4660
4643
 
4661
4644
  return undefined;
4662
4645
  });
@@ -4906,15 +4889,14 @@ _defineProperty(InputStateCalculator, "getNextState", function (gateInputState)
4906
4889
  __webpack_require__.r(__webpack_exports__);
4907
4890
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCompletePinData", function() { return getCompletePinData; });
4908
4891
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRowData", function() { return getRowData; });
4909
- /* harmony import */ var _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microchip/pin-standard */ "./node_modules/@microchip/pin-standard/lib/index.js");
4910
- /* 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__);
4911
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; }
4912
4895
 
4913
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; }
4914
4897
 
4915
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; }
4916
4899
 
4917
- //import { pin_row } from "@microchip/pin-standard";
4918
4900
 
4919
4901
  // provide complete dynamic data for all pin rows. It overrides static pindata.json
4920
4902
  var getCompletePinData = function getCompletePinData(appModel) {
@@ -4926,8 +4908,8 @@ function getRowData(appModel, rowData) {
4926
4908
  var _appModel$getImportVa, _appModel$getImportVa2, _appModel$getImportVa3, _appModel$getImportVa4, _appModel$getImportVa5, _appModel$getImportVa6, _appModel$getHardware, _appModel$getHardware2, _appModel$getComponen, _appModel$getComponen2, _appModel$getComponen3;
4927
4909
 
4928
4910
  var retRowJSONdata = rowData;
4929
- var getPPSPins = (_appModel$getImportVa = appModel.getImportValue("pin_standard")) === 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()];
4930
- var getAPFCONPins = (_appModel$getImportVa4 = appModel.getImportValue("pin_standard")) === 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()];
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()];
4931
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";
4932
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")];
4933
4915
 
@@ -4938,7 +4920,7 @@ function getRowData(appModel, rowData) {
4938
4920
  behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
4939
4921
  filter: {
4940
4922
  module: moduleName,
4941
- aliasReEx: "^".concat(moduleName, "$")
4923
+ aliasReEx: "^".concat(moduleName, "$|^").concat(moduleName, "OUT$")
4942
4924
  }
4943
4925
  });
4944
4926
  } else if (rowData.name === "clcin0") {
@@ -5101,12 +5083,12 @@ function getRowData(appModel, rowData) {
5101
5083
  }
5102
5084
 
5103
5085
  var getpinBehaviour = function getpinBehaviour(apfconPins, ppsPins, regEx) {
5104
- var pinBehaviour = _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].LOCK_UNLOCK;
5086
+ var pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].LOCK_UNLOCK;
5105
5087
 
5106
5088
  if (apfconPins) {
5107
5089
  for (var key in apfconPins) {
5108
5090
  if (key.match(regEx)) {
5109
- pinBehaviour = _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].APFCON;
5091
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].APFCON;
5110
5092
  }
5111
5093
  }
5112
5094
  }
@@ -5116,12 +5098,12 @@ var getpinBehaviour = function getpinBehaviour(apfconPins, ppsPins, regEx) {
5116
5098
  if (_key === "pps_out") {
5117
5099
  for (var key1 in ppsPins[_key]) {
5118
5100
  if (key1.match(regEx)) {
5119
- pinBehaviour = _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5101
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5120
5102
  }
5121
5103
  }
5122
5104
  } else {
5123
5105
  if (_key.match(regEx)) {
5124
- pinBehaviour = _microchip_pin_standard__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5106
+ pinBehaviour = _microchip_pins_interface_lib_types__WEBPACK_IMPORTED_MODULE_0__["behaviour"].PPS;
5125
5107
  }
5126
5108
  }
5127
5109
  }
@@ -5411,7 +5393,7 @@ var Interface = {
5411
5393
  /*! exports provided: moduleName, deviceType, hasPins, booleanValues, help, UIGroups, UIOrder, tabs, analytics, templates, imports, exports, softwareData, peripherals, default */
5412
5394
  /***/ (function(module) {
5413
5395
 
5414
- 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\"}]}}]}");
5415
5397
 
5416
5398
  /***/ }),
5417
5399
 
@@ -5435,7 +5417,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
5435
5417
 
5436
5418
  __webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
5437
5419
  __webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
5438
- module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.1.1/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");
5439
5421
 
5440
5422
 
5441
5423
  /***/ })