@mchp-mcc/scf-pic8-pwm-v2 4.2.7 → 4.2.8

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.2.8] - 2023-06-14
5
+
6
+ ### New Features
7
+ - **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
8
+
9
+
4
10
  ## [4.2.7] - 2023-03-09
5
11
 
6
12
  ### Bug Fixes
@@ -13,12 +19,3 @@ All notable changes to this project will be documented in this file.
13
19
 
14
20
  ### Improvements
15
21
  - **CC8SCRIP-10646** :- Added a validator for the Custom Name in Easy View
16
-
17
-
18
- ## [4.2.5] - 2022-05-06
19
-
20
- ### New Features
21
- - **CC8SCRIP-7975** :- "Select a Timer" Setting is not getting reflected in register view and in generated code
22
- - **CC8SCRIP-7971** :- Added options for timer selection component in UI
23
- - **CC8SCRIP-7856** :- Added "Timer Dependency Selector" Component in the UI
24
- - **CC8SCRIP-7817** :- Added support to make PWMxOUT pin visible in pin grid view
package/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- © 2019 Microchip Technology Inc. and its subsidiaries.
1
+ © 2023 Microchip Technology Inc. and its subsidiaries.
2
2
 
3
3
  Subject to your compliance with these terms, you may use Microchip
4
4
  software and any derivatives exclusively with Microchip products.
package/Readme.md CHANGED
@@ -18,6 +18,12 @@ This driver generates the following files:
18
18
  # Changelog
19
19
  All notable changes to this project will be documented in this file.
20
20
 
21
+ ## [4.2.8] - 2023-06-14
22
+
23
+ ### New Features
24
+ - **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
25
+
26
+
21
27
  ## [4.2.7] - 2023-03-09
22
28
 
23
29
  ### Bug Fixes
@@ -30,12 +36,3 @@ All notable changes to this project will be documented in this file.
30
36
 
31
37
  ### Improvements
32
38
  - **CC8SCRIP-10646** :- Added a validator for the Custom Name in Easy View
33
-
34
-
35
- ## [4.2.5] - 2022-05-06
36
-
37
- ### New Features
38
- - **CC8SCRIP-7975** :- "Select a Timer" Setting is not getting reflected in register view and in generated code
39
- - **CC8SCRIP-7971** :- Added options for timer selection component in UI
40
- - **CC8SCRIP-7856** :- Added "Timer Dependency Selector" Component in the UI
41
- - **CC8SCRIP-7817** :- Added support to make PWMxOUT pin visible in pin grid view
@@ -536,10 +536,10 @@ var filterModeOptions = function filterModeOptions(options, component, masterCom
536
536
 
537
537
  var getProcessedHandle = function getProcessedHandle(handle, payload) {
538
538
  if (handle) {
539
- var _ref, _ref2, _payload$moduleName;
539
+ var _ref, _ref2, _ref3, _payload$customName;
540
540
 
541
541
  handle = _objectSpread(_objectSpread({}, handle), {}, {
542
- label: (_ref = (_ref2 = (_payload$moduleName = payload === null || payload === void 0 ? void 0 : payload.moduleName) !== null && _payload$moduleName !== void 0 ? _payload$moduleName : payload === null || payload === void 0 ? void 0 : payload.name) !== null && _ref2 !== void 0 ? _ref2 : handle.label) !== null && _ref !== void 0 ? _ref : handle.providerId + " : " + handle.exportId
542
+ label: (_ref = (_ref2 = (_ref3 = (_payload$customName = payload === null || payload === void 0 ? void 0 : payload.customName) !== null && _payload$customName !== void 0 ? _payload$customName : payload === null || payload === void 0 ? void 0 : payload.moduleName) !== null && _ref3 !== void 0 ? _ref3 : payload === null || payload === void 0 ? void 0 : payload.name) !== null && _ref2 !== void 0 ? _ref2 : handle.label) !== null && _ref !== void 0 ? _ref : handle.providerId + " : " + handle.exportId
543
543
  });
544
544
  }
545
545
 
@@ -2902,7 +2902,7 @@ var MyDerivedData = function MyDerivedData(dataModel) {
2902
2902
  var _optnmatch$length;
2903
2903
 
2904
2904
  var eachoptn = _step.value;
2905
- var timeroptnregex = /^pwm[0-9]timer([0-9])$/i;
2905
+ var timeroptnregex = /^pwm\d+timer(\d)$/i;
2906
2906
  var optnmatch = eachoptn.alias.match(timeroptnregex);
2907
2907
  var correctOptnName = ((_optnmatch$length = optnmatch === null || optnmatch === void 0 ? void 0 : optnmatch.length) !== null && _optnmatch$length !== void 0 ? _optnmatch$length : 0) > 1 ? "TMR" + (optnmatch === null || optnmatch === void 0 ? void 0 : optnmatch[1]) : "";
2908
2908
  result.push(correctOptnName);
@@ -2927,7 +2927,7 @@ var MyDerivedData = function MyDerivedData(dataModel) {
2927
2927
  var _optnmatch$length2;
2928
2928
 
2929
2929
  var _eachoptn = _step2.value;
2930
- var _timeroptnregex = /^pwm[0-9]timer([0-9])$/i;
2930
+ var _timeroptnregex = /^pwm\d+timer(\d)$/i;
2931
2931
 
2932
2932
  var _optnmatch = _eachoptn.alias.match(_timeroptnregex);
2933
2933