Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

debug.h

Committer:
klauss
Date:
2014-10-20
Revision:
48:195c97f12e8e
Parent:
45:c80574f24dc3
Child:
69:65665afbad5d

File content as of revision 48:195c97f12e8e:

#ifndef __DEBUG_H__
#define __DEBUG_H__

#include <stdint.h>
#include <stdio.h>
#include "mbed.h"
#include "EthernetInterface.h"
#include "configs.h"
#include "prompt.h"

extern char debug_msg1[ 1024+64 ];
extern char debug_msg2[ 1024 ];
extern char msg_[ 1024 ];

void debug_pkg( int size, uint8_t * pkg );

#define debug_msg(...) _debug_msg(__VA_ARGS__)
#define _debug_msg(...) { \
  sprintf(debug_msg1, "%s:%d ", __FILE__, __LINE__); \
  sprintf(debug_msg2, __VA_ARGS__); \
  strcat(debug_msg1, debug_msg2); \
  pc.printf( "%s\n\r", debug_msg1 ); \
  if( tcp_session ){ \
    strcat( debug_msg1, "\n\r" ); \
    tcp_client.send_all( debug_msg1, strlen( debug_msg1 ) ); \
  }else if( udp_request ){ \
    udp_server.sendTo( udp_client, debug_msg1, strlen( debug_msg1 ) ); \
  } \
}

#define send_msg(...) _send_msg(__VA_ARGS__)
#define _send_msg(...) { \
  sprintf( msg_, __VA_ARGS__); \
  pc.printf( "%s\n\r> ", msg_ ); \
  if( tcp_session ){ \
    strcat( msg_, "\n\r> " ); \
    tcp_client.send_all( msg_, strlen( msg_ ) ); \
  }else if( udp_request ){ \
    udp_server.sendTo( udp_client, debug_msg1, strlen( debug_msg1 ) ); \
  } \
}

#endif