AqualinkD/source/packetLogger.h

32 lines
1.3 KiB
C

#ifndef PACKETLOGGER_H_
#define PACKETLOGGER_H_
#include <stdbool.h>
#include <stdint.h>
#include "utils.h"
#define RS485LOGFILE "/tmp/RS485.log"
#define RS485BYTELOGFILE "/tmp/RS485raw.log"
void startPacketLogger(); // use what ever config has
void startPacketLogging(bool debug_protocol_packets, bool debug_raw_bytes); // Set custom options
void stopPacketLogger();
//void logPacket(unsigned char *packet_buffer, int packet_length, bool checksumerror);
//void logPacket(unsigned char *packet_buffer, int packet_length);
void logPacketRead(const unsigned char *packet_buffer, int packet_length);
void logPacketWrite(const unsigned char *packet_buffer, int packet_length);
void logPacketError(const unsigned char *packet_buffer, int packet_length);
void logPacketByte(const unsigned char *byte);
void logPacket(logmask_t from, int level, const unsigned char *packet_buffer, int packet_length, bool is_read) ;
int beautifyPacket(char *buff, int buff_size, const unsigned char *packet_buffer, int packet_length, bool is_read);
int sprintFrame(char *buff, int buff_size, const unsigned char *packet_buffer, int packet_length);
// Only use for manual debugging
void debuglogPacket(logmask_t from, const unsigned char *packet_buffer, int packet_length, bool is_read, bool forcelog);
#endif //PACKETLOGGER_H_