Subversion Repositories HomeAutomation

Rev

Blame | Last modification | View Log | SVN | RSS feed

  1. #ifndef DEBUGHELPER_H
  2. #define DEBUGHELPER_H
  3.  
  4. #include <avr/pgmspace.h>
  5.  
  6. void Debug_ByteToUart_p(const char *s, const uint8_t val);
  7. #define Debug_ByteToUart_P(s, v) Debug_ByteToUart_p(PSTR(s), v)
  8.  
  9. #endif
  10.