@mchp-mcc/scf-pic8-pwm-v2 4.2.8 → 4.2.10
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 +8 -10
- package/Readme.md +8 -10
- package/output/autoCreator.js +486 -11
- package/output/autoCreator.js.map +1 -1
- package/output/autoProcessor.js +486 -11
- package/output/autoProcessor.js.map +1 -1
- package/output/creator.js +213 -11
- package/output/creator.js.map +1 -1
- package/output/processor.js +213 -11
- package/output/processor.js.map +1 -1
- package/package.json +12 -11
- package/src/CreatorFunctions.ts +0 -17
- package/src/DerivedData.test.ts +0 -654
- package/src/DerivedData.ts +0 -333
- package/src/GeneratorModel.test.tsx +0 -39
- package/src/GeneratorModel.tsx +0 -65
- package/src/PinsLogic.test.ts +0 -103
- package/src/PinsLogic.ts +0 -26
- package/src/PwmCalculator.test.tsx +0 -113
- package/src/PwmCalculator.tsx +0 -67
- package/src/catalog.json +0 -23
- package/src/interfaces/pwm_general_parameters.test.tsx +0 -40
- package/src/interfaces/pwm_general_parameters.tsx +0 -121
- package/src/moduleConfig.json +0 -371
- package/src/pinlogic.json +0 -20
- package/src/pinsdata.json +0 -15
package/Changelog.md
CHANGED
|
@@ -1,21 +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.10] - 2023-07-13
|
|
5
5
|
|
|
6
6
|
### New Features
|
|
7
|
-
- **CC8SCRIP-
|
|
7
|
+
- **CC8SCRIP-16805** :- Add support for PIC12/16(L)F150x device family
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
## [4.2.
|
|
10
|
+
## [4.2.9] - 2023-06-29
|
|
11
11
|
|
|
12
|
-
###
|
|
13
|
-
- **CC8SCRIP-
|
|
14
|
-
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
15
|
-
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|
|
12
|
+
### New Features
|
|
13
|
+
- **CC8SCRIP-13806** :- PIC16LF156x : Support for PWM module - Implementation for PWMAOE
|
|
16
14
|
|
|
17
15
|
|
|
18
|
-
## [4.2.
|
|
16
|
+
## [4.2.8] - 2023-06-14
|
|
19
17
|
|
|
20
|
-
###
|
|
21
|
-
- **CC8SCRIP-
|
|
18
|
+
### New Features
|
|
19
|
+
- **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
|
package/Readme.md
CHANGED
|
@@ -18,21 +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.10] - 2023-07-13
|
|
22
22
|
|
|
23
23
|
### New Features
|
|
24
|
-
- **CC8SCRIP-
|
|
24
|
+
- **CC8SCRIP-16805** :- Add support for PIC12/16(L)F150x device family
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
## [4.2.
|
|
27
|
+
## [4.2.9] - 2023-06-29
|
|
28
28
|
|
|
29
|
-
###
|
|
30
|
-
- **CC8SCRIP-
|
|
31
|
-
- **CC8SCRIP-13401** :- Added support for timer dependency selector in the UI
|
|
32
|
-
- **CC8SCRIP-12947** :- PWM output not seen when multiple instances are used.
|
|
29
|
+
### New Features
|
|
30
|
+
- **CC8SCRIP-13806** :- PIC16LF156x : Support for PWM module - Implementation for PWMAOE
|
|
33
31
|
|
|
34
32
|
|
|
35
|
-
## [4.2.
|
|
33
|
+
## [4.2.8] - 2023-06-14
|
|
36
34
|
|
|
37
|
-
###
|
|
38
|
-
- **CC8SCRIP-
|
|
35
|
+
### New Features
|
|
36
|
+
- **CC8SCRIP-13286** :- Added 10-Bit PWM Peripheral Support for PIC16(L)F177x
|