mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-10 01:05:42 +00:00
added supercharger test results
This commit is contained in:
parent
dbe5470fdb
commit
533c95a507
2 changed files with 31 additions and 2 deletions
|
@ -1,5 +1,17 @@
|
|||
# Open issues
|
||||
|
||||
## Issue 18: On SuperCharger we ignore the session ID
|
||||
- In the SessionSetupResponse, the SuperCharger V3 correctly provides a sessionID, e.g. "06ef0071".
|
||||
- But we ignore this, and send in all next messages (starting with ServiceDiscoveryReq) the sessionID "deadbeefdeadbeef".
|
||||
- The SuperCharger correctly complains with "ResponseCode": "FAILED_UnknownSession".
|
||||
- observed with Software version v0.5-12-g23b1384, on 2023-03-02.
|
||||
- root cause: In main_commandlineinterface.c we check, whether the session ID has 16 characters, to represent 8 hex bytes.
|
||||
But the SuperCharger provides 8 characters, to present 4 bytes. Thats why the function useSessionIdFromCommandLine()
|
||||
operates with the default session ID "deadbeefdeadbeef".
|
||||
- solution: in function useSessionIdFromCommandLine(), also accept shorter session IDs. And in function init_dinMessageHeaderWithSessionID(),
|
||||
use a dynamic length instead of the fixed length LEN_OF_SESSION_ID (=8).
|
||||
|
||||
|
||||
## Issue 17: Welding detection fails
|
||||
- WeldingDetectionRes says "failed" on alpitronics, and no response on ABBHPC and ABBTriple
|
||||
- version v0.4-7-g7cea8b5 (2022-12-21)
|
||||
|
|
|
@ -145,7 +145,24 @@ Test results tbd
|
|||
## Tesla Supercharger V3
|
||||
|
||||
Test site e.g. https://www.goingelectric.de/stromtankstellen/Deutschland/Koesching/Supercharger-Car-Wash-Ruppertswies-4/69557/
|
||||
or https://www.goingelectric.de/stromtankstellen/Deutschland/Pfaffenhofen-an-der-Ilm/Supercharger-Hotel-Strasshof-Siebenecken-1/44134/
|
||||
|
||||
Test results
|
||||
- [ ] SLAC: fails. It sends SLAC_PARAM_CNF, but nothing more.
|
||||
Test results of version v0.5-12-g23b1384, on 2023-03-02
|
||||
- [x] SLAC
|
||||
- [x] SDP
|
||||
- [x] TCP connection
|
||||
- [x] EXI
|
||||
- [x] DIN SupportedApplicationProtocol
|
||||
- [x] DIN SessionSetup
|
||||
- [x] DIN ServiceDiscovery
|
||||
- [x] DIN ServicePaymentSelection
|
||||
- [x] DIN ContractAuthentication
|
||||
- [x] DIN ChargeParameterDiscovery
|
||||
- [ ] DIN CableCheck: The cable check runs into timeout. No real voltage on the pins. Maybe caused by wrong sessionId, see issue 18.
|
||||
- [ ] DIN PreCharge
|
||||
- [ ] DIN PowerDelivery Start
|
||||
- [ ] DIN CurrentDemand
|
||||
- [ ] DIN PowerDelivery Stop
|
||||
- [ ] DIN WeldingDetection
|
||||
- [ ] DIN SessionStop
|
||||
|
||||
|
|
Loading…
Reference in a new issue