@mchp-mcc/scf-pic8-ccp-v1 4.0.7 → 4.0.8

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 +10 -0
  2. package/Readme.md +17 -2
  3. package/lib/generated_module/src/index.js +0 -5
  4. package/output/autoCreator.js +4577 -0
  5. package/output/autoCreator.js.map +1 -0
  6. package/output/autoProcessor.js +4579 -0
  7. package/output/autoProcessor.js.map +1 -0
  8. package/output/capture-header-template.h.ftl +39 -166
  9. package/output/capture-source-template.c.ftl +21 -19
  10. package/output/compare-header-template.h.ftl +40 -156
  11. package/output/compare-source-template.c.ftl +15 -19
  12. package/output/creator.js +7752 -2528
  13. package/output/creator.js.map +1 -1
  14. package/output/default-header-template.h.ftl +15 -33
  15. package/output/default-source-template.c.ftl +9 -19
  16. package/output/processor.js +5113 -6003
  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 +9 -19
  20. package/package.json +98 -22
  21. package/src/Alerts.tsx +19 -16
  22. package/src/CreatorFunctions.ts +13 -25
  23. package/src/DerivedData.test.ts +2476 -0
  24. package/src/DerivedData.ts +815 -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 +58 -106
  35. package/src/pinsdata.json +3 -2
  36. package/src/DerivedData.tsx +0 -1233
package/Changelog.md ADDED
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [4.0.8] - 2022-07-07
5
+
6
+ ### New Features
7
+ - **CC8SCRIP-5407** :- Added Module Readme
8
+
9
+ ### Bug Fixes
10
+ - **CC8SCRIP-8235** :- CCP module PPS pins options are not available in pin grid view
package/Readme.md CHANGED
@@ -1,4 +1,19 @@
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.8] - 2022-07-07
14
+
15
+ ### New Features
16
+ - **CC8SCRIP-5407** :- Added Module Readme
2
17
 
3
- ## [4.0.7]
4
- - Initial release version.
18
+ ### Bug Fixes
19
+ - **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