Compare commits

...

2 Commits

Author SHA1 Message Date
16fc92cacd FIXUP! fix diagrame parsing issue 2025-10-20 20:41:32 +02:00
74e5f84239 FIXUP! update documentation 2025-10-20 20:41:04 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ sequenceDiagram
- `ecu_framework/flashing/hex_flasher.py` is a stub — replace with your protocol implementation (UDS/XCP) - `ecu_framework/flashing/hex_flasher.py` is a stub — replace with your protocol implementation (UDS/XCP)
- Validate timing requirements and chunk sizes per ECU - Validate timing requirements and chunk sizes per ECU
- Consider power-cycle/reset hooks via an external rig if required - Consider power-cycle/reset hooks via programmable poewr supply.
## Error handling ## Error handling

View File

@ -25,7 +25,7 @@ sequenceDiagram
A->>BL: BLC_openPort(port0) A->>BL: BLC_openPort(port0)
A->>BL: BLC_loadSDF(handle, sdf_path, 1) A->>BL: BLC_loadSDF(handle, sdf_path, 1)
A->>BL: BLC_getChannelHandle(handle, channelIndex) A->>BL: BLC_getChannelHandle(handle, channelIndex)
A->>BL: BLC_sendCommand(channel, "start schedule N;") A->>BL: BLC_sendCommand(channel, 'start schedule N;')
A-->>T: connected A-->>T: connected
``` ```