@mchp-mcc/scf-pic8-ccp-v1 4.0.7 → 4.0.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.
Files changed (36) hide show
  1. package/Changelog.md +22 -0
  2. package/Readme.md +29 -2
  3. package/lib/generated_module/src/index.js +0 -5
  4. package/output/autoCreator.js +4687 -0
  5. package/output/autoCreator.js.map +1 -0
  6. package/output/autoProcessor.js +4689 -0
  7. package/output/autoProcessor.js.map +1 -0
  8. package/output/capture-header-template.h.ftl +42 -169
  9. package/output/capture-source-template.c.ftl +22 -20
  10. package/output/compare-header-template.h.ftl +41 -156
  11. package/output/compare-source-template.c.ftl +15 -19
  12. package/output/creator.js +7855 -2521
  13. package/output/creator.js.map +1 -1
  14. package/output/default-header-template.h.ftl +15 -34
  15. package/output/default-source-template.c.ftl +9 -19
  16. package/output/processor.js +5022 -5802
  17. package/output/processor.js.map +1 -1
  18. package/output/pwm-header-template.h.ftl +27 -116
  19. package/output/pwm-source-template.c.ftl +13 -23
  20. package/package.json +99 -23
  21. package/src/Alerts.tsx +19 -16
  22. package/src/CreatorFunctions.ts +13 -25
  23. package/src/DerivedData.test.ts +2471 -0
  24. package/src/DerivedData.ts +843 -0
  25. package/src/GeneratorModel.tsx +3 -4
  26. package/src/PinsLogic.test.ts +226 -0
  27. package/src/PinsLogic.ts +4 -2
  28. package/src/PwmCalculator.test.tsx +56 -0
  29. package/src/catalog.json +25 -0
  30. package/src/interfaces/signal-source.test.tsx +30 -0
  31. package/src/interfaces/signal-source.tsx +1 -1
  32. package/src/interfaces/trigger-source.test.tsx +30 -0
  33. package/src/interfaces/trigger-source.tsx +1 -1
  34. package/src/moduleConfig.json +101 -109
  35. package/src/pinsdata.json +3 -2
  36. package/src/DerivedData.tsx +0 -1233
package/Changelog.md ADDED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [4.0.9] - 2022-11-25
5
+
6
+ ### New Features
7
+ - **CC8SCRIP-10199** :- Added Analytics Support
8
+ - **CC8SCRIP-8782** :- Added Component-Level Help and Tooltips
9
+
10
+ ### Bug Fixes
11
+ - **CC8SCRIP-10710** :- (PIC18FxxK40) (CCP PWM) Warnings generated during compilation
12
+ - **CC8SCRIP-10707** :- (PIC18F6xK40) (CCP PWM) Incorrect generated value for CCPTMRS0bits.CxTSEL when selecting Timer 8
13
+ - **CC8SCRIP-10631** :- (PIC18F6xK40) (CCP Capture) Incorrect generated value for CCPTMRS0bits.CxTSEL when selecting Timer 7
14
+
15
+
16
+ ## [4.0.8] - 2022-07-07
17
+
18
+ ### New Features
19
+ - **CC8SCRIP-5407** :- Added Module Readme
20
+
21
+ ### Bug Fixes
22
+ - **CC8SCRIP-8235** :- CCP module PPS pins options are not available in pin grid view
package/Readme.md CHANGED
@@ -1,4 +1,31 @@
1
+ # Capture/Compare/PWM (CCP)
2
+
3
+ ## Overview
4
+ The Capture/Compare/PWM module is a peripheral that allows the user to time and control different events, and to generate Pulse-Width Modulation (PWM) signals.
5
+ - Capture mode allows the timing of the duration of an event.
6
+ - Compare mode allows the user to trigger an external event when a predetermined amount of time has
7
+ expired.
8
+ - PWM mode generates Pulse-Width Modulated signals of varying frequency and duty cycle.
9
+
1
10
  # Changelog
11
+ All notable changes to this project will be documented in this file.
12
+
13
+ ## [4.0.9] - 2022-11-25
14
+
15
+ ### New Features
16
+ - **CC8SCRIP-10199** :- Added Analytics Support
17
+ - **CC8SCRIP-8782** :- Added Component-Level Help and Tooltips
18
+
19
+ ### Bug Fixes
20
+ - **CC8SCRIP-10710** :- (PIC18FxxK40) (CCP PWM) Warnings generated during compilation
21
+ - **CC8SCRIP-10707** :- (PIC18F6xK40) (CCP PWM) Incorrect generated value for CCPTMRS0bits.CxTSEL when selecting Timer 8
22
+ - **CC8SCRIP-10631** :- (PIC18F6xK40) (CCP Capture) Incorrect generated value for CCPTMRS0bits.CxTSEL when selecting Timer 7
23
+
24
+
25
+ ## [4.0.8] - 2022-07-07
26
+
27
+ ### New Features
28
+ - **CC8SCRIP-5407** :- Added Module Readme
2
29
 
3
- ## [4.0.7]
4
- - Initial release version.
30
+ ### Bug Fixes
31
+ - **CC8SCRIP-8235** :- CCP module PPS pins options are not available in pin grid view
@@ -3,14 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.hooks = void 0;
4
4
  var processor_1 = require("./processor");
5
5
  var creator_1 = require("./creator");
6
- // eslint-disable-next-line @typescript-eslint/no-var-requires
7
- var packageJson = require("../../../package.json");
8
6
  exports.hooks = {
9
7
  process: processor_1.process,
10
8
  create: creator_1.create,
11
9
  reducer: "auto",
12
- displayName: packageJson.scf.displayName,
13
- category: packageJson.scf.category,
14
- views: packageJson.scf.views,
15
10
  };
16
11
  //# sourceMappingURL=index.js.map