@mchp-mcc/scf-pic8-interrupt-v3 1.0.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 ADDED
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [1.0.0] - 2023-04-20
5
+
6
+ ### New Features
7
+ - **CC8SCRIP-15208** :- Added support for PIC12/16(L)F182x/4x device family
8
+ - **CC8SCRIP-12780** :- Added support for PIC16(L)F194x/193x Device family
package/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ © 2019 Microchip Technology Inc. and its subsidiaries.
2
+
3
+ Subject to your compliance with these terms, you may use Microchip
4
+ software and any derivatives exclusively with Microchip products.
5
+ It is your responsibility to comply with third party license terms
6
+ applicable to your use of third party software (including open
7
+ source software) that may accompany Microchip software.
8
+
9
+ THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES,
10
+ WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE,
11
+ INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT,
12
+ MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE.
13
+
14
+ IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL,
15
+ PUNITIVE, INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE
16
+ OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED,
17
+ EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE
18
+ DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW,
19
+ MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY RELATED TO
20
+ THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU
21
+ HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
package/Readme.md ADDED
@@ -0,0 +1,14 @@
1
+ # PIC8 Interrupt Manager
2
+
3
+ ## Overview
4
+ The Interrupt Manager configures the interrupt and handles the interrupt requests and prioritizations.
5
+
6
+
7
+ # Changelog
8
+ All notable changes to this project will be documented in this file.
9
+
10
+ ## [1.0.0] - 2023-04-20
11
+
12
+ ### New Features
13
+ - **CC8SCRIP-15208** :- Added support for PIC12/16(L)F182x/4x device family
14
+ - **CC8SCRIP-12780** :- Added support for PIC16(L)F194x/193x Device family
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.hooks = void 0;
4
+ var processor_1 = require("./processor");
5
+ var creator_1 = require("./creator");
6
+ exports.hooks = {
7
+ process: processor_1.process,
8
+ create: creator_1.create,
9
+ reducer: "auto",
10
+ };
11
+ //# sourceMappingURL=index.js.map