8000 Fix DEBUG_PRINT reporting wrong message type in handleMessage fn by IVAN-MK7 · Pull Request #181 · mz-automation/lib60870 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix DEBUG_PRINT reporting wrong message type in handleMessa 8000 ge fn #181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion lib60870-C/src/iec60870/cs104/cs104_slave.c
Original file line number Diff line number Diff line change
Expand Up @@ -2843,7 +2843,7 @@ handleMessage(MasterConnection self, uint8_t* buffer, int msgSize)
/* Check for STOPDT_ACT message */
else if ((buffer[2] & 0x13) == 0x13)
{
DEBUG_PRINT("CS104 SLAVE: Received STARTDT_ACT\n");
DEBUG_PRINT("CS104 SLAVE: Received STOPDT_ACT\n");

MasterConnection_deactivate(self);

Expand Down
0