@mchp-mcc/scf-pic8-pwm-v2 4.2.9 → 4.2.10

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.
@@ -1,433 +0,0 @@
1
- {
2
- "moduleName": "PWM",
3
- "deviceType": "PIC",
4
- "booleanValues": {
5
- "true": "enabled",
6
- "false": "disabled"
7
- },
8
- "UIGroups": {
9
- "software": "Software Settings",
10
- "hardware": "Hardware Settings",
11
- "additional": "Additional Pin Settings"
12
- },
13
- "UIOrder": {
14
- "software": [
15
- "*"
16
- ],
17
- "hardware": [
18
- "pwmenPwmcon",
19
- "pwmoePwmcon",
20
- "timerSelection",
21
- "dutyCycle",
22
- "pwmdcValue",
23
- "pwmpolPwmcon",
24
- "pwmPeriod",
25
- "pwmFrequency",
26
- "pwmResolution",
27
- "*"
28
- ],
29
- "additional": [
30
- "*"
31
- ]
32
- },
33
- "hasPins": true,
34
- "tabs": {
35
- "main": "Easy View",
36
- "register": "Register Initialization"
37
- },
38
- "help": {
39
- "url": "v2/keyword-lookup?keyword=scf-pic8-pwm-v2&redirect=true",
40
- "tooltip": "Click here to open documentation."
41
- },
42
- "analytics": {
43
- "logAlwaysComps": [
44
- "pwmenPwmcon",
45
- "pwmFrequency",
46
- "pwmResolution"
47
- ],
48
- "logOnChangeComps": [],
49
- "compMapping": {
50
- "pwmenPwmcon": "PWM_Enable",
51
- "pwmFrequency": "PWM_Frequency",
52
- "pwmResolution": "PWM_Resolution"
53
- }
54
- },
55
- "templates": [
56
- {
57
- "src": "output/pwm-v2.c.ftl",
58
- "dest": "pwm/src/${sourceFileName}",
59
- "generateWithHardware": true
60
- },
61
- {
62
- "src": "output/pwm-v2.h.ftl",
63
- "dest": "pwm/${headerFileName}",
64
- "generateWithHardware": true
65
- }
66
- ],
67
- "imports": {
68
- "initializer_system": {
69
- "nodeModule": {
70
- "importName": "systemInit",
71
- "node": "@microchip/initializer-system"
72
- },
73
- "import": {
74
- "interfaceId": {
75
- "name": "initializer-system",
76
- "version": "^0.5.3"
77
- }
78
- }
79
- },
80
- "scf_pic8_pwm_v2": {
81
- "import": {
82
- "interfaceId": {
83
- "name": "scf-pic8-pwm-v2",
84
- "version": "1.0.0"
85
- },
86
- "isRequired": true
87
- }
88
- },
89
- "osc_clocks": {
90
- "import": {
91
- "interfaceId": {
92
- "name": "osc-clocks",
93
- "version": "^0.2.0"
94
- }
95
- }
96
- },
97
- "Timer": {
98
- "import": {
99
- "interfaceId": {
100
- "name": "timer-2-4-6-general-parameters",
101
- "version": "^0.2.0"
102
- }
103
- }
104
- },
105
- "pin_standard": {
106
- "import": {
107
- "interfaceId": {
108
- "name": "pin-standard",
109
- "version": "^0.1.0"
110
- }
111
- }
112
- },
113
- "device_meta": {
114
- "import": {
115
- "interfaceId": {
116
- "name": "device-meta",
117
- "version": "^1"
118
- }
119
- }
120
- }
121
- },
122
- "exports": {
123
- "pwm_general": {
124
- "interfaces": [
125
- {
126
- "interfaceId": {
127
- "name": "pwm_general_parameters",
128
- "version": "0.1.0"
129
- }
130
- }
131
- ]
132
- }
133
- },
134
- "softwareData": {
135
- "componentName": {
136
- "name": "componentName",
137
- "description": "Custom Name",
138
- "type": "string",
139
- "defaultValue": "PWM",
140
- "group": "software",
141
- "tabs": [
142
- "main"
143
- ],
144
- "category": "software",
145
- "validation": true
146
- },
147
- "tmr2Dependency": {
148
- "name": "tmr2Dependency",
149
- "description": "Timer Dependency Selector",
150
- "category": "import",
151
- "type": "ComboBox",
152
- "group": "software",
153
- "tabs": [
154
- "main"
155
- ],
156
- "importId": "Timer"
157
- },
158
- "timerSelection": {
159
- "name": "timerSelection",
160
- "description": "Select a Timer",
161
- "type": "ComboBox",
162
- "group": "hardware",
163
- "defaultValue": {
164
- "value": "TMR2",
165
- "options": [
166
- "TMR2",
167
- "TMR4",
168
- "TMR6"
169
- ]
170
- },
171
- "tabs": [
172
- "main"
173
- ],
174
- "category": "software",
175
- "sdlHelp": {
176
- "tooltip": "Click for more Information",
177
- "url": "v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true"
178
- }
179
- },
180
- "dutyCycle": {
181
- "name": "dutyCycle",
182
- "description": "Duty Cycle (%)",
183
- "type": "number",
184
- "defaultValue": 50,
185
- "group": "hardware",
186
- "validation": true,
187
- "tabs": [
188
- "main"
189
- ],
190
- "category": "software",
191
- "sdlHelp": {
192
- "tooltip": "Click for more Information",
193
- "url": "v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${instance}DC&redirect=true"
194
- }
195
- },
196
- "pwmdcValue": {
197
- "name": "pwmdcValue",
198
- "description": "PWMDC Value",
199
- "type": "number",
200
- "defaultValue": 0,
201
- "group": "hardware",
202
- "uiBehavior": {
203
- "readonly": true
204
- },
205
- "tabs": [
206
- "main"
207
- ],
208
- "category": "software",
209
- "sdlHelp": {
210
- "tooltip": "Click for more Information",
211
- "url": "v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${instance}DC&redirect=true"
212
- }
213
- },
214
- "pwmPeriod": {
215
- "name": "pwmPeriod",
216
- "description": "PWM Period (s)",
217
- "type": "number",
218
- "defaultValue": 0,
219
- "group": "hardware",
220
- "uiBehavior": {
221
- "readonly": true
222
- },
223
- "tabs": [
224
- "main"
225
- ],
226
- "category": "software"
227
- },
228
- "pwmFrequency": {
229
- "name": "pwmFrequency",
230
- "description": "PWM Frequency (Hz)",
231
- "type": "number",
232
- "defaultValue": 0,
233
- "group": "hardware",
234
- "uiBehavior": {
235
- "readonly": true
236
- },
237
- "tabs": [
238
- "main"
239
- ],
240
- "category": "software"
241
- },
242
- "pwmResolution": {
243
- "name": "pwmResolution",
244
- "description": "PWM Resolution (bits)",
245
- "type": "number",
246
- "defaultValue": 0,
247
- "group": "hardware",
248
- "uiBehavior": {
249
- "readonly": true
250
- },
251
- "tabs": [
252
- "main"
253
- ],
254
- "category": "software"
255
- }
256
- },
257
- "peripherals": [
258
- {
259
- "interfaceId": {
260
- "name": "scf-pic8-pwm-v2",
261
- "version": "1.0.0"
262
- },
263
- "registers": {
264
- "PWMTMRS": [
265
- {
266
- "setting": "CTSEL",
267
- "name": "ctselPwmtmrs",
268
- "category": "hardware",
269
- "description": "Insert Description Here",
270
- "type": "ComboBox",
271
- "group": "hardware",
272
- "tabs": [
273
- "register"
274
- ]
275
- }
276
- ],
277
- "CCPTMRS1": [
278
- {
279
- "setting": "CTSEL",
280
- "name": "ctselCcptmrs1",
281
- "description": "Insert Description Here",
282
- "type": "ComboBox",
283
- "group": "hardware",
284
- "tabs": [
285
- "register"
286
- ],
287
- "category": "hardware"
288
- }
289
- ],
290
- "CCPTMRS": [
291
- {
292
- "setting": "CTSEL",
293
- "name": "ctselCcptmrs",
294
- "category": "hardware",
295
- "description": "Insert Description Here",
296
- "type": "ComboBox",
297
- "group": "hardware",
298
- "tabs": [
299
- "register"
300
- ]
301
- }
302
- ],
303
- "PWMCON": [
304
- {
305
- "setting": "PWMPOL",
306
- "name": "pwmpolPwmcon",
307
- "description": "PWM Polarity",
308
- "type": "ComboBox",
309
- "group": "hardware",
310
- "tabs": [
311
- "main"
312
- ],
313
- "category": "hardware",
314
- "sdlHelp": {
315
- "tooltip": "Click for more Information",
316
- "url": "v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true"
317
- }
318
- },
319
- {
320
- "setting": "PWMOUT",
321
- "name": "pwmoutPwmcon",
322
- "description": "Insert Description Here",
323
- "type": "boolean",
324
- "group": "hardware",
325
- "tabs": [
326
- "register"
327
- ],
328
- "category": "hardware"
329
- },
330
- {
331
- "setting": "PWMEN",
332
- "name": "pwmenPwmcon",
333
- "description": "PWM Enable",
334
- "type": "boolean",
335
- "group": "hardware",
336
- "overrideDefaultValue": "enabled",
337
- "tabs": [
338
- "main"
339
- ],
340
- "category": "hardware",
341
- "sdlHelp": {
342
- "tooltip": "Click for more Information",
343
- "url": "v2/keyword-lookup?keyword=atmel;device:${deviceName};register:${registerName}&redirect=true"
344
- }
345
- },
346
- {
347
- "setting": "PWMOE",
348
- "name": "pwmoePwmcon",
349
- "category": "hardware",
350
- "description": "Enable Pin Output",
351
- "type": "boolean",
352
- "group": "hardware",
353
- "tabs": [
354
- "main"
355
- ]
356
- }
357
- ],
358
- "PWMAOE": [
359
- {
360
- "setting": "PWMOE0",
361
- "name": "pwmoe0Pwmaoe",
362
- "category": "hardware",
363
- "description": "Enable Additional Output 1",
364
- "type": "boolean",
365
- "group": "additional",
366
- "tabs": [
367
- "main"
368
- ]
369
- },
370
- {
371
- "setting": "PWMOE1",
372
- "name": "pwmoe1Pwmaoe",
373
- "category": "hardware",
374
- "description": "Enable Additional Output 2",
375
- "type": "boolean",
376
- "group": "additional",
377
- "tabs": [
378
- "main"
379
- ]
380
- },
381
- {
382
- "setting": "PWMOE2",
383
- "name": "pwmoe2Pwmaoe",
384
- "category": "hardware",
385
- "description": "Enable Additional Output 3",
386
- "type": "boolean",
387
- "group": "additional",
388
- "tabs": [
389
- "main"
390
- ]
391
- },
392
- {
393
- "setting": "PWMOE3",
394
- "name": "pwmoe3Pwmaoe",
395
- "category": "hardware",
396
- "description": "Enable Additional Output 4",
397
- "type": "boolean",
398
- "group": "additional",
399
- "tabs": [
400
- "main"
401
- ]
402
- }
403
- ],
404
- "PWMDCH": [
405
- {
406
- "setting": "PWMDCH",
407
- "name": "pwmdchPwmdch",
408
- "description": "Insert Description Here",
409
- "type": "string",
410
- "group": "hardware",
411
- "tabs": [
412
- "register"
413
- ],
414
- "category": "hardware"
415
- }
416
- ],
417
- "PWMDCL": [
418
- {
419
- "setting": "PWMDCL",
420
- "name": "pwmdclPwmdcl",
421
- "description": "Insert Description Here",
422
- "type": "string",
423
- "group": "hardware",
424
- "tabs": [
425
- "register"
426
- ],
427
- "category": "hardware"
428
- }
429
- ]
430
- }
431
- }
432
- ]
433
- }
package/src/pinsdata.json DELETED
@@ -1,54 +0,0 @@
1
- {
2
- "rows": [
3
- {
4
- "name": "out",
5
- "module": "PWM6",
6
- "function": "PWM6(OUT|$)",
7
- "direction": "output",
8
- "filter": {
9
- "module": "PWM6",
10
- "aliasReEx": "^PWM[0-9]$"
11
- }
12
- },
13
- {
14
- "name": "pwmx0",
15
- "module": "PWM1",
16
- "function": "PWM10OUT",
17
- "direction": "output",
18
- "filter": {
19
- "module": "PWM1",
20
- "aliasReEx": "^PWM[0-9]0$"
21
- }
22
- },
23
- {
24
- "name": "pwmx1",
25
- "module": "PWM1",
26
- "function": "PWM10OUT",
27
- "direction": "output",
28
- "filter": {
29
- "module": "PWM1",
30
- "aliasReEx": "^PWM[0-9]1$"
31
- }
32
- },
33
- {
34
- "name": "pwmx2",
35
- "module": "PWM1",
36
- "function": "PWM10OUT",
37
- "direction": "output",
38
- "filter": {
39
- "module": "PWM1",
40
- "aliasReEx": "^PWM[0-9]2$"
41
- }
42
- },
43
- {
44
- "name": "pwmx3",
45
- "module": "PWM1",
46
- "function": "PWM10OUT",
47
- "direction": "output",
48
- "filter": {
49
- "module": "PWM1",
50
- "aliasReEx": "^PWM[0-9]3$"
51
- }
52
- }
53
- ]
54
- }