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

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,19 +1,13 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [1.0.3] - 2024-09-25
5
-
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
-
9
-
10
- ## [1.0.2] - 2023-12-01
4
+ ## [1.0.4] - 2026-04-10
11
5
 
6
+ ### Bug Fixes
7
+ - **M8PD-18093** :- The Timer0 interrupt was reconfigured to operate independently of the peripheral interrupt within the ISR.
12
8
 
13
- No changes from previous version
14
-
15
-
16
- ## [1.0.1] - 2023-07-04
17
9
 
10
+ ## [1.0.3] - 2024-09-25
18
11
 
19
- No changes from previous version
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
package/Readme.md CHANGED
@@ -7,19 +7,13 @@ 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.3] - 2024-09-25
11
-
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
-
15
-
16
- ## [1.0.2] - 2023-12-01
10
+ ## [1.0.4] - 2026-04-10
17
11
 
12
+ ### Bug Fixes
13
+ - **M8PD-18093** :- The Timer0 interrupt was reconfigured to operate independently of the peripheral interrupt within the ISR.
18
14
 
19
- No changes from previous version
20
-
21
-
22
- ## [1.0.1] - 2023-07-04
23
15
 
16
+ ## [1.0.3] - 2024-09-25
24
17
 
25
- No changes from previous version
18
+ ### New Features and Improvements
19
+ - **M8PD-10406** :- Generation of module ISR call inside legacy Interrupt Routine when "Generate MODULE ISR" component is enabled in the dependent module GUI
@@ -3870,9 +3870,9 @@ var MyDerivedData = function MyDerivedData(dataModel) {
3870
3870
  var initSectionMessage = "// If using interrupts in PIC18 High/Low Priority Mode you need to enable the Global High and Low Interrupts \n" + " // If using interrupts in PIC Mid-Range Compatibility Mode you need to enable the Global and Peripheral Interrupts \n" + " // Use the following macros to: \n\n";
3871
3871
 
3872
3872
  if (!_this.getModel().isComponentValue("ipenIntcon")) {
3873
- initSectionMessage += " // Enable the Global Interrupts \n" + " //INTERRUPT_GlobalInterruptEnable(); \n\n" + " // Disable the Global Interrupts \n" + " //INTERRUPT_GlobalInterruptDisable(); \n\n" + " // Enable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptEnable(); \n\n" + " // Disable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptDisable(); \n";
3873
+ initSectionMessage += " // Enable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptEnable(); \n" + " // Disable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptDisable(); \n\n" + " // Enable the Global Interrupts \n" + " //INTERRUPT_GlobalInterruptEnable(); \n" + " // Disable the Global Interrupts \n" + " //INTERRUPT_GlobalInterruptDisable(); \n\n";
3874
3874
  } else {
3875
- initSectionMessage += " // Enable the Global High Interrupts \n" + " //INTERRUPT_GlobalInterruptHighEnable(); \n\n" + " // Disable the Global High Interrupts \n" + " //INTERRUPT_GlobalInterruptHighDisable(); \n\n" + " // Enable the Global Low Interrupts \n" + " //INTERRUPT_GlobalInterruptLowEnable(); \n\n" + " // Disable the Global Low Interrupts \n" + " //INTERRUPT_GlobalInterruptLowDisable(); \n\n" + " // Enable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptEnable(); \n\n" + " // Disable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptDisable(); \n";
3875
+ initSectionMessage += " // Enable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptEnable(); \n" + " // Disable the Peripheral Interrupts \n" + " //INTERRUPT_PeripheralInterruptDisable(); \n" + " // Enable the Global High Interrupts \n\n" + " //INTERRUPT_GlobalInterruptHighEnable(); \n" + " // Disable the Global High Interrupts \n" + " //INTERRUPT_GlobalInterruptHighDisable(); \n\n" + " // Enable the Global Low Interrupts \n" + " //INTERRUPT_GlobalInterruptLowEnable(); \n" + " // Disable the Global Low Interrupts \n" + " //INTERRUPT_GlobalInterruptLowDisable(); \n\n";
3876
3876
  }
3877
3877
 
3878
3878
  return {
@@ -3996,7 +3996,7 @@ var getGeneratorModel = function getGeneratorModel(model, noPrioIntList) {
3996
3996
  return interrupt.generateISR;
3997
3997
  }).map(function (data) {
3998
3998
  return _objectSpread(_objectSpread({}, data), {}, {
3999
- isPeripheralInterrupt: data.module !== _Constants__WEBPACK_IMPORTED_MODULE_0__["EXTINT_NAME"] && data.module !== "PIN_MANAGER"
3999
+ isPeripheralInterrupt: data.module !== _Constants__WEBPACK_IMPORTED_MODULE_0__["EXTINT_NAME"] && data.module !== "PIN_MANAGER" && data.module !== "TMR0"
4000
4000
  });
4001
4001
  });
4002
4002
  extIntList = (_extIntList = extIntList).concat.apply(_extIntList, _toConsumableArray(noPrioIntList.filter(function (data) {