Subversion Repositories pentevo

Rev

Rev 70 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef RS232_H
  2. #define RS232_H
  3.  
  4. void rs232_init(void);
  5. void rs232_transmit(UBYTE data);
  6.  
  7. //#define LOGENABLE
  8. #ifdef LOGENABLE
  9. void to_log(char* ptr);
  10. #endif
  11.  
  12. #endif //RS232_H
  13.