@mchp-mcc/scf-pic8-pwm-v2 4.2.4 → 4.2.6

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.
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * @ingroup ${moduleNameLowerCase}
7
7
  *
8
- * @brief This file contains the driver code for ${moduleNameUpperCase} module.
8
+ * @brief This file contains the API implementations for the ${moduleNameUpperCase} module.
9
9
  *
10
10
  * @version ${moduleNameUpperCase} Driver Version 2.0.2
11
11
  */
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * @defgroup ${moduleNameLowerCase} ${moduleNameUpperCase}
7
7
  *
8
- * @brief This header file provides APIs for the ${moduleNameUpperCase} driver.
8
+ * @brief This file contains the API prototypes for the ${moduleNameUpperCase} driver.
9
9
  *
10
10
  * @version ${moduleNameUpperCase} Driver Version 2.0.2
11
11
  */
@@ -31,17 +31,17 @@ ${disclaimer}
31
31
 
32
32
  /**
33
33
  * @ingroup ${moduleNameLowerCase}
34
- * @brief This routine initializes the ${moduleNameUpperCase} interface.
35
- * @param none
36
- * @return none
34
+ * @brief Initializes the ${moduleNameUpperCase} interface.
35
+ * @param None.
36
+ * @return None.
37
37
  */
38
38
  ${simpleApi.Initialize};
39
39
 
40
40
  /**
41
41
  * @ingroup ${moduleNameLowerCase}
42
- * @brief This routine loads the 16 bit duty cycle value.
43
- * @param ${api.LoadDutyValue.arguments[0].type} ${api.LoadDutyValue.arguments[0].name} - load ${moduleNameUpperCase} duty cycle value.
44
- * @return none
42
+ * @brief Loads the 16-bit duty cycle value.
43
+ * @param ${api.LoadDutyValue.arguments[0].type} ${api.LoadDutyValue.arguments[0].name} - ${moduleNameUpperCase} duty cycle value to be loaded.
44
+ * @return None.
45
45
  */
46
46
  ${simpleApi.LoadDutyValue};
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mchp-mcc/scf-pic8-pwm-v2",
3
- "version": "4.2.4",
3
+ "version": "4.2.6",
4
4
  "scf": {
5
5
  "reducer": "auto",
6
6
  "creator": "output/creator.js",
@@ -105,8 +105,8 @@
105
105
  "profile": "jest profile",
106
106
  "build-run-dir-future": "node config/extract-run-directory-future.js",
107
107
  "release": "yarn build && yarn test && node -e 'require(\"./config/scf-project-scripts\").releaseProject()'",
108
- "test:itf:all": "node ./node_modules/@mchp-mcc/ccl-itf/lib/index.js --sp=./tests/itf --rd=./run",
109
- "test:itf:dev": "node ./node_modules/@mchp-mcc/ccl-itf/lib/index.js --sp=./tests/itf --rd=./run --sf=pwmV2.major.test.ts --df=\"PIC16F18875|PIC16F18854|PIC16LF18856\"",
108
+ "test:itf:all": "node ./node_modules/@microchip/ccl-itf/lib/index.js --sp=./tests/itf --rd=./run --sf=pwmV2.major.test.ts --df=\"PIC16F18076|PIC16F18877|PIC18F47Q10\"",
109
+ "test:itf:dev": "node ./node_modules/@microchip/ccl-itf/lib/index.js --sp=./tests/itf --rd=./run --sf=pwmV2.major.test.ts --df=\"PIC16F18076\"",
110
110
  "postprocess": "node config/appendPrototype.js"
111
111
  },
112
112
  "husky": {
@@ -136,7 +136,15 @@
136
136
  "<rootDir>/run"
137
137
  ],
138
138
  "preset": "ts-jest",
139
- "collectCoverage": true
139
+ "collectCoverage": true,
140
+ "coverageThreshold": {
141
+ "./src": {
142
+ "branches": 80,
143
+ "functions": 80,
144
+ "lines": 80,
145
+ "statements": 80
146
+ }
147
+ }
140
148
  },
141
149
  "dependencies": {
142
150
  "@microchip/api-prefix-registration": "^0.1.0",
@@ -161,9 +169,9 @@
161
169
  "@babel/preset-env": "^7.9.6",
162
170
  "@babel/preset-react": "^7.9.4",
163
171
  "@babel/preset-typescript": "^7.9.0",
164
- "@mchp-mcc/ccl-itf": "^0.2.16",
165
- "@mchp-mcc/pic-8bit": "^5.4.5",
166
- "@mchp-mcc/pic-8bit-types": "^5.4.1",
172
+ "@mchp-mcc/pic-8bit": "^5.9.0-dev.5",
173
+ "@mchp-mcc/pic-8bit-types": "^5.9.0-dev.5",
174
+ "@microchip/ccl-itf": "^1.5.0",
167
175
  "@microchip/initializer-system": "^0.5.3",
168
176
  "@microchip/melody-automodule-interface": "^1.5.1",
169
177
  "@microchip/pic-8bit-types": "^5.0.1",