@mchp-mcc/scf-pic8-pwm-v2 4.2.10 → 4.2.12
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 +7 -7
- package/Readme.md +7 -7
- package/lib/generated_module/src/index.js +2 -2
- package/output/autoCreator.js +120 -147
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +120 -147
- package/output/autoProcessor.js.map +1 -1
- package/output/creator.js +1202 -1208
- package/output/creator.js.map +1 -1
- package/output/nullPrototype.json +7 -7
- package/output/processor.js +1202 -1208
- package/output/processor.js.map +1 -1
- package/output/pwm-v2.c.ftl +29 -32
- package/output/pwm-v2.h.ftl +1 -1
- package/package.json +21 -21
package/Changelog.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [4.2.
|
|
4
|
+
## [4.2.12] - 2024-02-14
|
|
5
5
|
|
|
6
|
-
###
|
|
7
|
-
- **CC8SCRIP-
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
- **CC8SCRIP-19533** :- MCC Melody generates nonworking code with two PWM modules enabled
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
## [4.2.
|
|
10
|
+
## [4.2.11] - 2023-09-27
|
|
11
11
|
|
|
12
12
|
### New Features
|
|
13
|
-
- **CC8SCRIP-
|
|
13
|
+
- **CC8SCRIP-18261** :- Supported Alternative Pin Functionality (APFCON) for PIC12/PIC16 devices
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
## [4.2.
|
|
16
|
+
## [4.2.10] - 2023-07-13
|
|
17
17
|
|
|
18
18
|
### New Features
|
|
19
|
-
- **CC8SCRIP-
|
|
19
|
+
- **CC8SCRIP-16805** :- Add support for PIC12/16(L)F150x device family
|
package/Readme.md
CHANGED
|
@@ -18,19 +18,19 @@ This driver generates the following files:
|
|
|
18
18
|
# Changelog
|
|
19
19
|
All notable changes to this project will be documented in this file.
|
|
20
20
|
|
|
21
|
-
## [4.2.
|
|
21
|
+
## [4.2.12] - 2024-02-14
|
|
22
22
|
|
|
23
|
-
###
|
|
24
|
-
- **CC8SCRIP-
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
- **CC8SCRIP-19533** :- MCC Melody generates nonworking code with two PWM modules enabled
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
## [4.2.
|
|
27
|
+
## [4.2.11] - 2023-09-27
|
|
28
28
|
|
|
29
29
|
### New Features
|
|
30
|
-
- **CC8SCRIP-
|
|
30
|
+
- **CC8SCRIP-18261** :- Supported Alternative Pin Functionality (APFCON) for PIC12/PIC16 devices
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
## [4.2.
|
|
33
|
+
## [4.2.10] - 2023-07-13
|
|
34
34
|
|
|
35
35
|
### New Features
|
|
36
|
-
- **CC8SCRIP-
|
|
36
|
+
- **CC8SCRIP-16805** :- Add support for PIC12/16(L)F150x device family
|
|
@@ -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
|
+
const processor_1 = require("./processor");
|
|
5
|
+
const creator_1 = require("./creator");
|
|
6
6
|
exports.hooks = {
|
|
7
7
|
process: processor_1.process,
|
|
8
8
|
create: creator_1.create,
|