@libs-scripts-mep/grav-fw-pvi 3.1.0 → 4.0.0
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/README.md +2 -0
- package/grav-fw-pvi.js +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Biblioteca que auxilia na gravação de microcontroladores por linha de comando
|
|
|
4
4
|
|
|
5
5
|
## Instalando
|
|
6
6
|
|
|
7
|
+
> ### ⚠️ Compatibilidade PVI: [>= v4.8.0.0](https://git.inova.ind.br/Inova/PVI/releases/tag/4.8.0.0-beta0)
|
|
8
|
+
|
|
7
9
|
Abra o terminal, e na pasta do script, execute:
|
|
8
10
|
|
|
9
11
|
```
|
package/grav-fw-pvi.js
CHANGED
|
@@ -33,6 +33,7 @@ export default class GravaFW {
|
|
|
33
33
|
if (dirFirm != null && dirOpt != null) { validationMsg = `Verify OPTION BYTE succeeds` }
|
|
34
34
|
else if (dirFirm != null) { validationMsg = `Verifying PROGRAM MEMORY succeeds` }
|
|
35
35
|
else if (dirOpt != null) { validationMsg = `Verify OPTION BYTE succeeds` }
|
|
36
|
+
else { validationMsg = "error" }
|
|
36
37
|
|
|
37
38
|
let ObjWriteSTM8 = await defineWriteSTM8(dirFirm, dirOpt, objArguments)
|
|
38
39
|
|
|
@@ -88,7 +89,7 @@ export default class GravaFW {
|
|
|
88
89
|
resolve({ success: false, msg: `Nenhum diretório de firmware ou option byte informado` })
|
|
89
90
|
}
|
|
90
91
|
|
|
91
|
-
FWLink.runInstructionS("EXEC", [
|
|
92
|
+
FWLink.runInstructionS("EXEC", [`${FWLink.runInstructionS("GETRESOURCESPATH", [])}\\stvp\\STVP_CmdLine.exe`, ObjWriteSTM8.commandLineArguments, "true", "true"])
|
|
92
93
|
|
|
93
94
|
})
|
|
94
95
|
|
|
@@ -209,7 +210,7 @@ export default class GravaFW {
|
|
|
209
210
|
|
|
210
211
|
}, "sniffer.exec")
|
|
211
212
|
|
|
212
|
-
FWLink.runInstructionS("EXEC", [`${FWLink.runInstructionS("
|
|
213
|
+
FWLink.runInstructionS("EXEC", [`${FWLink.runInstructionS("GETRESOURCESPATH", [])}/Renesas/RFPV3.Console.exe`, dirProject, "true", "true"])
|
|
213
214
|
|
|
214
215
|
let timeOutGravacao = setTimeout(() => {
|
|
215
216
|
|
|
@@ -364,4 +365,6 @@ export default class GravaFW {
|
|
|
364
365
|
})
|
|
365
366
|
}
|
|
366
367
|
|
|
368
|
+
static { window.GravaFW = GravaFW }
|
|
369
|
+
|
|
367
370
|
}
|