Compare commits

..

No commits in common. "16fc92cacdc262f3d521162d7afa841189391b4c" and "558c39de0aa47a64f80ad5a268c4c8fb54f6f518" have entirely different histories.

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 programmable poewr supply. - Consider power-cycle/reset hooks via an external rig if required
## 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
``` ```