@mchp-mcc/scf-pic8-interrupt-v3 1.0.2 → 1.0.3

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,20 +1,19 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [1.0.2] - 2023-12-01
4
+ ## [1.0.3] - 2024-09-25
5
5
 
6
- ### Bug Fixes
7
- - **CC8SCRIP-18880** :- Fixed Melody Core Compatibility warnings for interrupt module
6
+ ### New Features and Improvements
7
+ - **M8PD-10406** :- Generation of module ISR call inside legacy Interrupt Routine when "Generate MODULE ISR" component is enabled in the dependent module GUI
8
8
 
9
9
 
10
- ## [1.0.1] - 2023-07-04
10
+ ## [1.0.2] - 2023-12-01
11
11
 
12
- ### New Features
13
- - **CC8SCRIP-15256** :- Added PPS pins support
14
12
 
13
+ No changes from previous version
14
+
15
+
16
+ ## [1.0.1] - 2023-07-04
15
17
 
16
- ## [1.0.0] - 2023-04-20
17
18
 
18
- ### New Features
19
- - **CC8SCRIP-15208** :- Added support for PIC12/16(L)F182x/4x device family
20
- - **CC8SCRIP-12780** :- Added support for PIC16(L)F194x/193x Device family
19
+ No changes from previous version
package/Readme.md CHANGED
@@ -7,20 +7,19 @@ The Interrupt Manager configures the interrupt and handles the interrupt request
7
7
  # Changelog
8
8
  All notable changes to this project will be documented in this file.
9
9
 
10
- ## [1.0.2] - 2023-12-01
10
+ ## [1.0.3] - 2024-09-25
11
11
 
12
- ### Bug Fixes
13
- - **CC8SCRIP-18880** :- Fixed Melody Core Compatibility warnings for interrupt module
12
+ ### New Features and Improvements
13
+ - **M8PD-10406** :- Generation of module ISR call inside legacy Interrupt Routine when "Generate MODULE ISR" component is enabled in the dependent module GUI
14
14
 
15
15
 
16
- ## [1.0.1] - 2023-07-04
16
+ ## [1.0.2] - 2023-12-01
17
17
 
18
- ### New Features
19
- - **CC8SCRIP-15256** :- Added PPS pins support
20
18
 
19
+ No changes from previous version
20
+
21
+
22
+ ## [1.0.1] - 2023-07-04
21
23
 
22
- ## [1.0.0] - 2023-04-20
23
24
 
24
- ### New Features
25
- - **CC8SCRIP-15208** :- Added support for PIC12/16(L)F182x/4x device family
26
- - **CC8SCRIP-12780** :- Added support for PIC16(L)F194x/193x Device family
25
+ No changes from previous version
@@ -3993,7 +3993,7 @@ var getGeneratorModel = function getGeneratorModel(model, noPrioIntList) {
3993
3993
  if (!registerValues) return {};
3994
3994
  var pieAvailable = (registerValues === null || registerValues === void 0 ? void 0 : (_registerValues$INTCO = registerValues["INTCON"]) === null || _registerValues$INTCO === void 0 ? void 0 : (_registerValues$INTCO2 = _registerValues$INTCO.settings) === null || _registerValues$INTCO2 === void 0 ? void 0 : _registerValues$INTCO2.PEIE) != undefined;
3995
3995
  highInterrupts = noPrioIntList.filter(function (interrupt) {
3996
- return interrupt.isEnabled;
3996
+ return interrupt.generateISR;
3997
3997
  }).map(function (data) {
3998
3998
  return _objectSpread(_objectSpread({}, data), {}, {
3999
3999
  isPeripheralInterrupt: data.module !== _Constants__WEBPACK_IMPORTED_MODULE_0__["EXTINT_NAME"] && data.module !== "PIN_MANAGER"