Skip to content

Commit

Permalink
[#164] Comment out debugging messages in standalone with TM frame pro…
Browse files Browse the repository at this point in the history
…cessing;
  • Loading branch information
jlucas9 committed Jun 15, 2023
1 parent 58c78a8 commit 53f1128
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions support/standalone/standalone.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,10 +458,10 @@ void* crypto_standalone_tm_process(void* sock)
}
else
{
if ( ((tm_ptr[0] != 0x03) && (tm_ptr[1] != 0xFF)) && ((tm_ptr[0] != 0xFF) && (tm_ptr[1] != 0x48)) )
{
printf("crypto_standalone_tm_process - SPP loop error, expected idle packet or frame! tm_ptr = 0x%02x%02x \n", tm_ptr[0], tm_ptr[1]);
}
//if ( ((tm_ptr[0] != 0x03) && (tm_ptr[1] != 0xFF)) && ((tm_ptr[0] != 0xFF) && (tm_ptr[1] != 0x48)) )
//{
// printf("crypto_standalone_tm_process - SPP loop error, expected idle packet or frame! tm_ptr = 0x%02x%02x \n", tm_ptr[0], tm_ptr[1]);
//}
tm_process_len = 0;
}
}
Expand Down

0 comments on commit 53f1128

Please sign in to comment.