@mchp-mcc/scf-pic8-pwm-v2 4.2.7 → 4.2.9
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 +11 -14
- package/LICENSE.txt +1 -1
- package/Readme.md +11 -14
- package/output/autoCreator.js +482 -14
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +482 -14
- package/output/autoProcessor.js.map +1 -1
- package/output/creator.js +4082 -3618
- package/output/creator.js.map +1 -1
- package/output/processor.js +4082 -3618
- package/output/processor.js.map +1 -1
- package/package.json +15 -15
- package/src/DerivedData.test.ts +56 -29
- package/src/DerivedData.ts +16 -3
- package/src/GeneratorModel.test.tsx +2 -32
- package/src/PinsLogic.test.ts +2762 -79
- package/src/PinsLogic.ts +193 -6
- package/src/catalog.json +1 -1
- package/src/moduleConfig.json +63 -1
- package/src/pinsdata.json +42 -3
- package/src/pinlogic.json +0 -20
package/Changelog.md
CHANGED
|
@@ -1,24 +1,21 @@
|
|
|
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.9] - 2023-06-29
|
|
5
5
|
|
|
6
|
-
###
|
|
7
|
-
- **CC8SCRIP-
|
|
8
|
-
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
9
|
-
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|
|
6
|
+
### New Features
|
|
7
|
+
- **CC8SCRIP-13806** :- PIC16LF156x : Support for PWM module - Implementation for PWMAOE
|
|
10
8
|
|
|
11
9
|
|
|
12
|
-
## [4.2.
|
|
10
|
+
## [4.2.8] - 2023-06-14
|
|
13
11
|
|
|
14
|
-
###
|
|
15
|
-
- **CC8SCRIP-
|
|
12
|
+
### New Features
|
|
13
|
+
- **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
|
|
16
14
|
|
|
17
15
|
|
|
18
|
-
## [4.2.
|
|
16
|
+
## [4.2.7] - 2023-03-09
|
|
19
17
|
|
|
20
|
-
###
|
|
21
|
-
- **CC8SCRIP-
|
|
22
|
-
- **CC8SCRIP-
|
|
23
|
-
- **CC8SCRIP-
|
|
24
|
-
- **CC8SCRIP-7817** :- Added support to make PWMxOUT pin visible in pin grid view
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
- **CC8SCRIP-13488** :- Added support for Timer8 dependency in UI and generated driver for PIC18FxxK40 device family
|
|
20
|
+
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
21
|
+
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|
package/LICENSE.txt
CHANGED
package/Readme.md
CHANGED
|
@@ -18,24 +18,21 @@ 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.9] - 2023-06-29
|
|
22
22
|
|
|
23
|
-
###
|
|
24
|
-
- **CC8SCRIP-
|
|
25
|
-
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
26
|
-
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|
|
23
|
+
### New Features
|
|
24
|
+
- **CC8SCRIP-13806** :- PIC16LF156x : Support for PWM module - Implementation for PWMAOE
|
|
27
25
|
|
|
28
26
|
|
|
29
|
-
## [4.2.
|
|
27
|
+
## [4.2.8] - 2023-06-14
|
|
30
28
|
|
|
31
|
-
###
|
|
32
|
-
- **CC8SCRIP-
|
|
29
|
+
### New Features
|
|
30
|
+
- **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
|
|
33
31
|
|
|
34
32
|
|
|
35
|
-
## [4.2.
|
|
33
|
+
## [4.2.7] - 2023-03-09
|
|
36
34
|
|
|
37
|
-
###
|
|
38
|
-
- **CC8SCRIP-
|
|
39
|
-
- **CC8SCRIP-
|
|
40
|
-
- **CC8SCRIP-
|
|
41
|
-
- **CC8SCRIP-7817** :- Added support to make PWMxOUT pin visible in pin grid view
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
- **CC8SCRIP-13488** :- Added support for Timer8 dependency in UI and generated driver for PIC18FxxK40 device family
|
|
37
|
+
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
38
|
+
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|