Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion s7/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,14 @@ def connect(
if self._server_session_version is not None:
self._session_setup_ok = self._setup_session()
else:
logger.warning("PLC did not provide ServerSessionVersion - session setup incomplete")
logger.warning(
"PLC did not provide a scalar ServerSessionVersion attribute. "
"This is the V1-initial S7-1200 firmware band (FW < 4.5 "
"predating TLS) which sends a Struct(314) value and requires "
"the proprietary SessionKey handshake — not yet implemented "
"in python-snap7 (tracked in issue #710). Falling back to "
"legacy PUT/GET: db_read/db_write will work, browse() will not."
)
self._session_setup_ok = False

# Step 6: Version-specific post-setup
Expand Down
Loading