@mchp-mcc/dspic33a-flash 1.0.1 → 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 +12 -0
- package/Readme.md +12 -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_types.h.ftl +1 -1
- package/output/moduleConfig.json +1 -0
- package/output/processor.js +1 -10497
- package/output/processor.js.map +1 -1
- package/package.json +57 -14
- package/src/GeneratorModel.ts +1 -1
package/Changelog.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [1.0.3] - 2025-10-06
|
|
5
|
+
|
|
6
|
+
### New Features
|
|
7
|
+
- **CC16SCRIP-10092** :- Performance Improvement
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.0.2] - 2025-02-05
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
- **CC16SCRIP-9662** :- ErasePageAddressGet() returns wrong Flash Page Start address
|
|
14
|
+
|
|
15
|
+
|
|
4
16
|
## [1.0.1] - 2024-07-19
|
|
5
17
|
|
|
6
18
|
### New Features
|
package/Readme.md
CHANGED
|
@@ -5,6 +5,18 @@
|
|
|
5
5
|
# Changelog
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
7
7
|
|
|
8
|
+
## [1.0.3] - 2025-10-06
|
|
9
|
+
|
|
10
|
+
### New Features
|
|
11
|
+
- **CC16SCRIP-10092** :- Performance Improvement
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.0.2] - 2025-02-05
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
- **CC16SCRIP-9662** :- ErasePageAddressGet() returns wrong Flash Page Start address
|
|
18
|
+
|
|
19
|
+
|
|
8
20
|
## [1.0.1] - 2024-07-19
|
|
9
21
|
|
|
10
22
|
### New Features
|
|
@@ -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,
|