@mchp-mcc/clock-16bit-driver 1.0.0 → 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 +13 -0
- package/Readme.md +13 -2
- package/output/creator.js +3328 -3
- package/output/creator.js.map +1 -1
- package/output/index.html +25 -0
- package/output/nullPrototype.json +11 -1
- package/output/processor.js +6135 -17
- package/output/processor.js.map +1 -1
- package/output/reducer.js +17812 -0
- package/output/reducer.js.map +1 -0
- package/output/resources/help-icon.png +0 -0
- package/output/resources/loading-status.gif +0 -0
- package/package.json +35 -11
- package/src/App.tsx +54 -0
- package/src/DerivedData.tsx +250 -14
- package/src/actions.ts +22 -0
- package/src/catalog.json +25 -0
- package/src/index.tsx +48 -0
- package/src/moduleConfig.json +13 -3
- package/src/reducer.tsx +94 -0
package/Changelog.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
## [1.0.3] - 2022-05-24
|
5
|
+
|
6
|
+
### New Features
|
7
|
+
- **CC16SCRIP-2045** :- Dependency module names updated in builder view
|
8
|
+
|
9
|
+
|
10
|
+
## [1.0.2] - 2022-03-10
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
- **CC16SCRIP-3176** :- Minimum and Maximum clock range added for input clock frequency and requested clock frequency
|
package/Readme.md
CHANGED
@@ -23,6 +23,17 @@ The Clock Driver helps the user to easily configure the System Clock , Auxiliary
|
|
23
23
|
* Requested FCAN frequency can be configured from CAN 2.0/CAN-FD modules in Drivers category.
|
24
24
|
|
25
25
|
|
26
|
+
|
26
27
|
# Changelog
|
27
|
-
|
28
|
-
|
28
|
+
All notable changes to this project will be documented in this file.
|
29
|
+
|
30
|
+
## [1.0.3] - 2022-05-24
|
31
|
+
|
32
|
+
### New Features
|
33
|
+
- **CC16SCRIP-2045** :- Dependency module names updated in builder view
|
34
|
+
|
35
|
+
|
36
|
+
## [1.0.2] - 2022-03-10
|
37
|
+
|
38
|
+
### Bug Fixes
|
39
|
+
- **CC16SCRIP-3176** :- Minimum and Maximum clock range added for input clock frequency and requested clock frequency
|