@mchp-mcc/scf-pic8-clc-v1 4.0.15 → 4.1.0
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 +14 -9
- package/Readme.md +14 -9
- package/output/autoCreator.js +23 -62
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +23 -62
- package/output/autoProcessor.js.map +1 -1
- package/output/cla_clc_stacked_v5.c.ftl +16 -6
- package/output/cla_clc_stacked_v5.h.ftl +29 -6
- package/output/creator.js +23 -62
- package/output/creator.js.map +1 -1
- package/output/nullPrototype.json +5 -5
- package/output/processor.js +23 -62
- package/output/processor.js.map +1 -1
- package/output/reducer.js +1 -1
- package/output/view.js +30 -5
- package/output/view.js.map +1 -1
- package/package.json +9 -9
package/Changelog.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [4.1.0] - 2023-09-03
|
|
5
|
+
|
|
6
|
+
### New Features
|
|
7
|
+
- **CC8SCRIP-14895** :- Added Enable and Disable APIs in CLC MCC generated code for all devices
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- **CC8SCRIP-17726** :- Missing notification when Cx_OUT or PWMx_OUT is selected as gate input source
|
|
11
|
+
- **CC8SCRIP-17725** :- Custom Name does not update other APIs in the templates
|
|
12
|
+
- **CC8SCRIP-17681** :- PIC16F18877 Missing Gates in CLC module
|
|
13
|
+
|
|
14
|
+
### Improvements
|
|
15
|
+
- **CC8SCRIP-17727** :- Removed automatic loading of peripherals when selected as an input source
|
|
16
|
+
|
|
17
|
+
|
|
4
18
|
## [4.0.15] - 2023-08-09
|
|
5
19
|
|
|
6
20
|
### New Features
|
|
@@ -14,12 +28,3 @@ All notable changes to this project will be documented in this file.
|
|
|
14
28
|
|
|
15
29
|
### Improvements
|
|
16
30
|
- **CC8SCRIP-11127** :- Added a validator for the Custom Name in Easy View
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## [4.0.13] - 2022-10-27
|
|
20
|
-
|
|
21
|
-
### New Features
|
|
22
|
-
- **CC8SCRIP-8785** :- Added Component-Level Help and Tooltips
|
|
23
|
-
|
|
24
|
-
### Bug Fixes
|
|
25
|
-
- **CC8SCRIP-9330** :- Default input pins are configured as digital
|
package/Readme.md
CHANGED
|
@@ -7,6 +7,20 @@ 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.0] - 2023-09-03
|
|
11
|
+
|
|
12
|
+
### New Features
|
|
13
|
+
- **CC8SCRIP-14895** :- Added Enable and Disable APIs in CLC MCC generated code for all devices
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
- **CC8SCRIP-17726** :- Missing notification when Cx_OUT or PWMx_OUT is selected as gate input source
|
|
17
|
+
- **CC8SCRIP-17725** :- Custom Name does not update other APIs in the templates
|
|
18
|
+
- **CC8SCRIP-17681** :- PIC16F18877 Missing Gates in CLC module
|
|
19
|
+
|
|
20
|
+
### Improvements
|
|
21
|
+
- **CC8SCRIP-17727** :- Removed automatic loading of peripherals when selected as an input source
|
|
22
|
+
|
|
23
|
+
|
|
10
24
|
## [4.0.15] - 2023-08-09
|
|
11
25
|
|
|
12
26
|
### New Features
|
|
@@ -20,12 +34,3 @@ All notable changes to this project will be documented in this file.
|
|
|
20
34
|
|
|
21
35
|
### Improvements
|
|
22
36
|
- **CC8SCRIP-11127** :- Added a validator for the Custom Name in Easy View
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [4.0.13] - 2022-10-27
|
|
26
|
-
|
|
27
|
-
### New Features
|
|
28
|
-
- **CC8SCRIP-8785** :- Added Component-Level Help and Tooltips
|
|
29
|
-
|
|
30
|
-
### Bug Fixes
|
|
31
|
-
- **CC8SCRIP-9330** :- Default input pins are configured as digital
|
package/output/autoCreator.js
CHANGED
|
@@ -3975,7 +3975,7 @@ module.exports = g;
|
|
|
3975
3975
|
/*!**************************!*\
|
|
3976
3976
|
!*** ./src/Constants.ts ***!
|
|
3977
3977
|
\**************************/
|
|
3978
|
-
/*! exports provided: CANVAS_WIDTH, CANVAS_HEIGHT, INSTANCES, GATES, DATA_INPUTS, OPTION_MODULES */
|
|
3978
|
+
/*! exports provided: CANVAS_WIDTH, CANVAS_HEIGHT, INSTANCES, GATES, DATA_INPUTS, OPTION_MODULES, ALWAYS_IMPORT_IMPORTKEYS */
|
|
3979
3979
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3980
3980
|
|
|
3981
3981
|
"use strict";
|
|
@@ -3986,6 +3986,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3986
3986
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GATES", function() { return GATES; });
|
|
3987
3987
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DATA_INPUTS", function() { return DATA_INPUTS; });
|
|
3988
3988
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OPTION_MODULES", function() { return OPTION_MODULES; });
|
|
3989
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ALWAYS_IMPORT_IMPORTKEYS", function() { return ALWAYS_IMPORT_IMPORTKEYS; });
|
|
3989
3990
|
var CANVAS_WIDTH = 1200;
|
|
3990
3991
|
var CANVAS_HEIGHT = 600;
|
|
3991
3992
|
var INSTANCES = [1, 2, 3, 4, 5, 6, 7, 8];
|
|
@@ -4000,6 +4001,8 @@ var OPTION_MODULES = {
|
|
|
4000
4001
|
C6OUT: "CMP6",
|
|
4001
4002
|
C7OUT: "CMP7",
|
|
4002
4003
|
C8OUT: "CMP8",
|
|
4004
|
+
C1_OUT: "CMP1",
|
|
4005
|
+
C2_OUT: "CMP2",
|
|
4003
4006
|
sync_C1OUT: "CMP1",
|
|
4004
4007
|
SYNCC1OUT: "CMP1",
|
|
4005
4008
|
sync_C2OUT: "CMP2",
|
|
@@ -4061,6 +4064,7 @@ var OPTION_MODULES = {
|
|
|
4061
4064
|
LC2OUT: "CLC2",
|
|
4062
4065
|
LC3OUT: "CLC3",
|
|
4063
4066
|
LC4OUT: "CLC4",
|
|
4067
|
+
ADCRC: "ADC",
|
|
4064
4068
|
T1_overflow: "TMR1",
|
|
4065
4069
|
TMR1IF: "TMR1",
|
|
4066
4070
|
T2_overflow: "TMR2",
|
|
@@ -4129,9 +4133,13 @@ var OPTION_MODULES = {
|
|
|
4129
4133
|
PWM3_OUT2: "PWM3",
|
|
4130
4134
|
PWM4_OUT1: "PWM4",
|
|
4131
4135
|
PWM4_OUT2: "PWM4",
|
|
4136
|
+
PWM1_OUT: "PWM1",
|
|
4137
|
+
PWM2_OUT: "PWM2",
|
|
4132
4138
|
NCO1_OUT: "NCO1",
|
|
4133
4139
|
NCO2_OUT: "NCO2",
|
|
4134
4140
|
NCO3_OUT: "NCO3",
|
|
4141
|
+
ZCD1_OUT: "ZCD",
|
|
4142
|
+
ZCD2_OUT: "ZCD",
|
|
4135
4143
|
"SPI1 SDO OUT": "SPI1",
|
|
4136
4144
|
"SPI1 SCK OUT": "SPI1",
|
|
4137
4145
|
"SPI1 SS OUT": "SPI1",
|
|
@@ -4140,6 +4148,10 @@ var OPTION_MODULES = {
|
|
|
4140
4148
|
"SPI2 SS OUT": "SPI2",
|
|
4141
4149
|
"I2C SCL OUT": "I2C1",
|
|
4142
4150
|
"I2C SDA OUT": "I2C1",
|
|
4151
|
+
"I2C1 SCL OUT": "I2C1",
|
|
4152
|
+
"I2C1 SDA OUT": "I2C1",
|
|
4153
|
+
"I2C2 SCL OUT": "I2C2",
|
|
4154
|
+
"I2C2 SDA OUT": "I2C2",
|
|
4143
4155
|
"UART1 TX OUT": "UART1",
|
|
4144
4156
|
"UART2 TX OUT": "UART2",
|
|
4145
4157
|
"UART3 TX OUT": "UART3",
|
|
@@ -4165,6 +4177,7 @@ var OPTION_MODULES = {
|
|
|
4165
4177
|
CWG3A_OUT: "CWG3",
|
|
4166
4178
|
CWG3B_OUT: "CWG3"
|
|
4167
4179
|
};
|
|
4180
|
+
var ALWAYS_IMPORT_IMPORTKEYS = ["pin_standard", "initializer_system", "scf_pic8_clc_v1", "device_meta", "interrupt_standard", "clc_connections"];
|
|
4168
4181
|
|
|
4169
4182
|
/***/ }),
|
|
4170
4183
|
|
|
@@ -4178,9 +4191,7 @@ var OPTION_MODULES = {
|
|
|
4178
4191
|
"use strict";
|
|
4179
4192
|
__webpack_require__.r(__webpack_exports__);
|
|
4180
4193
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCreatorFunctions", function() { return getCreatorFunctions; });
|
|
4181
|
-
/* harmony import */ var
|
|
4182
|
-
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Constants */ "./src/Constants.ts");
|
|
4183
|
-
|
|
4194
|
+
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Constants */ "./src/Constants.ts");
|
|
4184
4195
|
|
|
4185
4196
|
var getCreatorFunctions = function getCreatorFunctions() {
|
|
4186
4197
|
return {
|
|
@@ -4190,61 +4201,11 @@ var getCreatorFunctions = function getCreatorFunctions() {
|
|
|
4190
4201
|
};
|
|
4191
4202
|
|
|
4192
4203
|
var shouldImport = function shouldImport(importKey, state) {
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
return _Constants__WEBPACK_IMPORTED_MODULE_1__["OPTION_MODULES"][state === null || state === void 0 ? void 0 : (_state$main = state.main) === null || _state$main === void 0 ? void 0 : (_state$main$hardware = _state$main.hardware) === null || _state$main$hardware === void 0 ? void 0 : _state$main$hardware[Object(_SettingNameCalculator__WEBPACK_IMPORTED_MODULE_0__["getGateSourceSetting"])(gate)]];
|
|
4197
|
-
});
|
|
4198
|
-
|
|
4199
|
-
switch (importKey) {
|
|
4200
|
-
case "CMP":
|
|
4201
|
-
return inputs.some(function (input) {
|
|
4202
|
-
return /CMP/.test(input);
|
|
4203
|
-
});
|
|
4204
|
-
|
|
4205
|
-
case "HLVD":
|
|
4206
|
-
return inputs.some(function (input) {
|
|
4207
|
-
return /HLVD/.test(input);
|
|
4208
|
-
});
|
|
4209
|
-
|
|
4210
|
-
case "I2C":
|
|
4211
|
-
return inputs.some(function (input) {
|
|
4212
|
-
return /I2C/.test(input);
|
|
4213
|
-
});
|
|
4214
|
-
|
|
4215
|
-
case "MSSP":
|
|
4216
|
-
return inputs.some(function (input) {
|
|
4217
|
-
return /MSSP/.test(input);
|
|
4218
|
-
});
|
|
4219
|
-
|
|
4220
|
-
case "NCO":
|
|
4221
|
-
return inputs.some(function (input) {
|
|
4222
|
-
return /NCO/.test(input);
|
|
4223
|
-
});
|
|
4224
|
-
|
|
4225
|
-
case "SPI":
|
|
4226
|
-
return inputs.some(function (input) {
|
|
4227
|
-
return /SPI/.test(input);
|
|
4228
|
-
});
|
|
4229
|
-
|
|
4230
|
-
case "TMR0":
|
|
4231
|
-
return inputs.some(function (input) {
|
|
4232
|
-
return /TMR0/.test(input);
|
|
4233
|
-
});
|
|
4234
|
-
|
|
4235
|
-
case "UART":
|
|
4236
|
-
return inputs.some(function (input) {
|
|
4237
|
-
return /US?ART/.test(input);
|
|
4238
|
-
});
|
|
4239
|
-
|
|
4240
|
-
case "ZCD":
|
|
4241
|
-
return inputs.some(function (input) {
|
|
4242
|
-
return /ZCD/.test(input);
|
|
4243
|
-
});
|
|
4244
|
-
|
|
4245
|
-
default:
|
|
4246
|
-
return true;
|
|
4204
|
+
if (_Constants__WEBPACK_IMPORTED_MODULE_0__["ALWAYS_IMPORT_IMPORTKEYS"].indexOf(importKey) >= 0) {
|
|
4205
|
+
return true;
|
|
4247
4206
|
}
|
|
4207
|
+
|
|
4208
|
+
return false;
|
|
4248
4209
|
};
|
|
4249
4210
|
|
|
4250
4211
|
var getCreatorImportArgs = function getCreatorImportArgs(importKey, state) {
|
|
@@ -4824,7 +4785,7 @@ var getGeneratorModel = function getGeneratorModel(model) {
|
|
|
4824
4785
|
return {
|
|
4825
4786
|
compiler: "XC8 v2.20",
|
|
4826
4787
|
tool: "MPLABX v5.40",
|
|
4827
|
-
|
|
4788
|
+
customName: model.getComponentValue("componentName"),
|
|
4828
4789
|
moduleNameLowerCase: model.getName().toLowerCase(),
|
|
4829
4790
|
moduleNameUpperCase: model.getName().toUpperCase(),
|
|
4830
4791
|
header: (_clcInterface$headerF = clcInterface.headerFiles) === null || _clcInterface$headerF === void 0 ? void 0 : _clcInterface$headerF[0],
|
|
@@ -5452,7 +5413,7 @@ var Interface = {
|
|
|
5452
5413
|
/*! exports provided: moduleName, deviceType, hasPins, booleanValues, help, UIGroups, UIOrder, tabs, analytics, templates, imports, exports, softwareData, peripherals, default */
|
|
5453
5414
|
/***/ (function(module) {
|
|
5454
5415
|
|
|
5455
|
-
module.exports = JSON.parse("{\"moduleName\":\"CLC\",\"deviceType\":\"PIC\",\"hasPins\":true,\"booleanValues\":{\"true\":\"enabled\",\"false\":\"disabled\"},\"help\":{\"url\":\"v2/keyword-lookup?keyword=scf-pic8-clc-v1&redirect=true\",\"tooltip\":\"Configurable Logic Cell (CLC): Integrated combinational and sequential logic.\"},\"UIGroups\":{\"software\":\"Software Settings\",\"hardware\":\"CLC Settings\",\"interrupt\":\"Interrupt Settings\"},\"UIOrder\":{\"software\":[\"*\"],\"hardware\":[\"lcenClccon\",\"lcmodeClccon\",\"*\"],\"interrupt\":[\"clci\",\"lcintpClccon\",\"lcintnClccon\",\"*\"]},\"tabs\":{\"main\":\"Easy View\",\"register\":\"Register Initialization\"},\"analytics\":{\"logAlwaysComps\":[\"lcmodeClccon\",\"lcenClccon\",\"clci\",\"lcintnClccon\",\"lcintpClccon\"],\"logOnChangeComps\":[],\"compMapping\":{\"lcmodeClccon\":\"CLC_Mode\",\"lcenClccon\":\"CLC_Enable\",\"clci\":\"CLC_Interrupt_Enable\",\"lcintnClccon\":\"CLC_Falling_Interrupt\",\"lcintpClccon\":\"CLC_Rising_Interrupt\"}},\"templates\":[{\"src\":\"output/cla_clc_stacked_v5.c.ftl\",\"dest\":\"clc/src/${sourceFileName}\",\"generateWithHardware\":true},{\"src\":\"output/cla_clc_stacked_v5.h.ftl\",\"dest\":\"clc/${headerFileName}\",\"generateWithHardware\":true}],\"imports\":{\"scf_pic8_clc_v1\":{\"import\":{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"isRequired\":true}},\"pin_standard\":{\"import\":{\"interfaceId\":{\"name\":\"pin-standard\",\"version\":\"0.1.0\"}}},\"initializer_system\":{\"nodeModule\":{\"importName\":\"systemInit\",\"node\":\"@microchip/initializer-system\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"initializer-system\",\"version\":\"^0.5.3\"}}},\"interrupt_standard\":{\"nodeModule\":{\"importName\":\"interrupt_standard\",\"node\":\"@microchip/interrupt-standard\"},\"fullyTyped\":true,\"import\":{\"interfaceId\":{\"name\":\"interrupt-standard\",\"version\":\"^1.0.1\"}}},\"device_meta\":{\"import\":{\"interfaceId\":{\"name\":\"device-meta\",\"version\":\"^1.0.0\"}}},\"clc_connections\":{\"import\":{\"interfaceId\":{\"name\":\"clc-connections\",\"version\":\"0.1.0\"}}},\"CMP\":{\"import\":{\"interfaceId\":{\"name\":\"cmp-interface\",\"version\":\"0.1.0\"}}},\"HLVD\":{\"import\":{\"interfaceId\":{\"name\":\"hlvd-interface\",\"version\":\"^0.1.0\"}}},\"I2C\":{\"import\":{\"interfaceId\":{\"name\":\"i2c-host\",\"version\":\"^2.0.0\"}}},\"MSSP\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"NCO\":{\"import\":{\"interfaceId\":{\"name\":\"nco-interface\",\"version\":\"0.1.0\"}}},\"SPI\":{\"import\":{\"interfaceId\":{\"name\":\"spi-master-basic\",\"version\":\"0.*\"}}},\"TMR0\":{\"import\":{\"interfaceId\":{\"name\":\"timer0_general_parameters\",\"version\":\"0.1.0\"}}},\"UART\":{\"import\":{\"interfaceId\":{\"name\":\"uart-basic\",\"version\":\"^4.0.0\"}}},\"ZCD\":{\"import\":{\"interfaceId\":{\"name\":\"zcd-output-parameters\",\"version\":\"1.0.0\"}}}},\"exports\":{\"clc\":{\"interfaces\":[{\"interfaceId\":{\"name\":\"cla-clc-stacked\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"trigger-source\",\"version\":\"0.1.0\"}},{\"interfaceId\":{\"name\":\"signal-source\",\"version\":\"0.1.0\"}}]}},\"softwareData\":{\"componentName\":{\"name\":\"componentName\",\"description\":\"Custom Name\",\"type\":\"string\",\"defaultValue\":\"Module\",\"group\":\"software\",\"tabs\":[\"main\"],\"category\":\"software\",\"validation\":true},\"clcDepSelector\":{\"name\":\"clcDepSelector\",\"category\":\"import\",\"description\":\"CLC dependency selector\",\"type\":\"ComboBox\",\"group\":\"software\",\"importId\":\"scf_pic8_clc_v1\",\"tabs\":[\"main\"]},\"CLCI\":{\"name\":\"clci\",\"description\":\"Enable CLC Interrupt\",\"defaultValue\":false,\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"software\"}},\"peripherals\":[{\"interfaceId\":{\"name\":\"scf-pic8-clc-v1\",\"version\":\"1.0.0\"},\"interrupts\":[\"CLCI\"],\"registers\":{\"CLCSELECT\":[{\"setting\":\"SLCT\",\"name\":\"slctClcselect\",\"description\":\"CLC instance select bits\",\"type\":\"string\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"}],\"CLCCON\":[{\"setting\":\"LCMODE\",\"name\":\"lcmodeClccon\",\"description\":\"Logic Cell Mode bits\",\"type\":\"ComboBox\",\"group\":\"hardware\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTN\",\"name\":\"lcintnClccon\",\"description\":\"Enable Falling Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCINTP\",\"name\":\"lcintpClccon\",\"description\":\"Enable Rising Interrupt\",\"type\":\"boolean\",\"group\":\"interrupt\",\"tabs\":[\"main\"],\"category\":\"hardware\",\"sdlHelp\":{\"tooltip\":\"Click for more Information\",\"url\":\"v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true\"}},{\"setting\":\"LCOUT\",\"name\":\"lcoutClccon\",\"description\":\"Logic Cell Data Output Status bit\",\"type\":\"boolean\",\"group\":\"hardware\",\"tabs\":[\"register\"],\"category\":\"hardware\"},{\"setting\":\"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\"}]}}]}");
|
|
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\"}]}}]}");
|
|
5456
5417
|
|
|
5457
5418
|
/***/ }),
|
|
5458
5419
|
|
|
@@ -5463,7 +5424,7 @@ module.exports = JSON.parse("{\"moduleName\":\"CLC\",\"deviceType\":\"PIC\",\"ha
|
|
|
5463
5424
|
/*! exports provided: rows, default */
|
|
5464
5425
|
/***/ (function(module) {
|
|
5465
5426
|
|
|
5466
|
-
module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\",\"function\":\"CLC1\",\"direction\":\"output\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLC1$\"},\"behaviour\":\"PPS\"},{\"name\":\"clcin0\",\"module\":\"CLCx\",\"function\":\"CLCIN0\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN0$|^CLC[1-9]IN0$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin1\",\"module\":\"CLCx\",\"function\":\"CLCIN1\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN1$|^CLC[1-9]IN1$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin2\",\"module\":\"CLCx\",\"function\":\"CLCIN2\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN2$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin3\",\"module\":\"CLCx\",\"function\":\"CLCIN3\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN3$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin4\",\"module\":\"CLCx\",\"function\":\"CLCIN4\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN4$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin5\",\"module\":\"CLCx\",\"function\":\"CLCIN5\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN5$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin6\",\"module\":\"CLCx\",\"function\":\"CLCIN6\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN6$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin7\",\"module\":\"CLCx\",\"function\":\"CLCIN7\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN7$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]}]}");
|
|
5427
|
+
module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\",\"function\":\"CLC1\",\"direction\":\"output\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLC1$|^CLC[1-9]OUT$\"},\"behaviour\":\"PPS\"},{\"name\":\"clcin0\",\"module\":\"CLCx\",\"function\":\"CLCIN0\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN0$|^CLC[1-9]IN0$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin1\",\"module\":\"CLCx\",\"function\":\"CLCIN1\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN1$|^CLC[1-9]IN1$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin2\",\"module\":\"CLCx\",\"function\":\"CLCIN2\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN2$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin3\",\"module\":\"CLCx\",\"function\":\"CLCIN3\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN3$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin4\",\"module\":\"CLCx\",\"function\":\"CLCIN4\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN4$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin5\",\"module\":\"CLCx\",\"function\":\"CLCIN5\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN5$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin6\",\"module\":\"CLCx\",\"function\":\"CLCIN6\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN6$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]},{\"name\":\"clcin7\",\"module\":\"CLCx\",\"function\":\"CLCIN7\",\"direction\":\"input\",\"filter\":{\"module\":\"CLC1\",\"aliasReEx\":\"^CLCIN7$\"},\"behaviour\":\"PPS\",\"attribs\":[{\"aliasReEx\":\".*\",\"analog\":false}]}]}");
|
|
5467
5428
|
|
|
5468
5429
|
/***/ }),
|
|
5469
5430
|
|
|
@@ -5476,7 +5437,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
|
|
|
5476
5437
|
|
|
5477
5438
|
__webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
|
|
5478
5439
|
__webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
|
|
5479
|
-
module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/
|
|
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");
|
|
5480
5441
|
|
|
5481
5442
|
|
|
5482
5443
|
/***/ })
|