Minor Update:

- Complete LogCore functions
- Implement ShowOutput() in Port and Socket functions
This commit is contained in:
Charl Wentzel
2016-05-17 11:23:57 +02:00
parent d7facce4de
commit eb0ab67499
4 changed files with 38 additions and 15 deletions

View File

@@ -8,6 +8,7 @@
// redA Libraries
#include "TimingCore.h"
#include "SocketCore.h"
#include "LogCore.h"
// Standard C/C++ Libraries
#include <stdio.h>
@@ -354,7 +355,7 @@ bool MaintainSocket( int PortHandle )
{
// Handle buffer as packet
SockInBuffer[ SockInLen ] = 0;
//ShowOutput( "Sock", SockInBuffer, SockInLen, Duration );
ShowOutput( "Sock In", OUT_NORMAL|OUT_HEX, SockInBuffer, SockInLen );
// Write output to Port
BytesWritten = 0;