@mchp-mcc/dspic33a-flash 1.0.2 → 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 +15 -0
- package/Readme.md +15 -0
- package/lib/generated_module/src/index.js +2 -2
- package/output/autoCreator.js +1 -4377
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +1 -4379
- package/output/autoProcessor.js.map +1 -1
- package/output/creator.js +1 -10497
- package/output/creator.js.map +1 -1
- package/output/flash-a-core-ftl/flash_nonblocking.c.ftl +2 -2
- package/output/moduleConfig.json +1 -0
- package/output/processor.js +1 -10497
- package/output/processor.js.map +1 -1
- package/package.json +13 -13
- package/src/GeneratorModel.ts +1 -1
package/Changelog.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [1.0.4] - 2025-11-28
|
|
5
|
+
|
|
6
|
+
### New Features
|
|
7
|
+
- **CC16SCRIP-7218** :- Context attribute support for all ISRs
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- **CC16SCRIP-10063** :- Removal of "auto_psv"/"no_auto_psv" from the ISR attribute
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [1.0.3] - 2025-10-06
|
|
14
|
+
|
|
15
|
+
### New Features
|
|
16
|
+
- **CC16SCRIP-10092** :- Performance Improvement
|
|
17
|
+
|
|
18
|
+
|
|
4
19
|
## [1.0.2] - 2025-02-05
|
|
5
20
|
|
|
6
21
|
### Bug Fixes
|
package/Readme.md
CHANGED
|
@@ -5,6 +5,21 @@
|
|
|
5
5
|
# Changelog
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
7
7
|
|
|
8
|
+
## [1.0.4] - 2025-11-28
|
|
9
|
+
|
|
10
|
+
### New Features
|
|
11
|
+
- **CC16SCRIP-7218** :- Context attribute support for all ISRs
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
- **CC16SCRIP-10063** :- Removal of "auto_psv"/"no_auto_psv" from the ISR attribute
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.0.3] - 2025-10-06
|
|
18
|
+
|
|
19
|
+
### New Features
|
|
20
|
+
- **CC16SCRIP-10092** :- Performance Improvement
|
|
21
|
+
|
|
22
|
+
|
|
8
23
|
## [1.0.2] - 2025-02-05
|
|
9
24
|
|
|
10
25
|
### Bug Fixes
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.hooks = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
var processor_1 = require("./processor");
|
|
5
|
+
var creator_1 = require("./creator");
|
|
6
6
|
exports.hooks = {
|
|
7
7
|
process: processor_1.process,
|
|
8
8
|
create: creator_1.create,
|