Subversion Repositories HomeAutomation

Rev

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

  1. #ifndef CANPRINTF_H_
  2. #define CANPRINTF_H_
  3.  
  4. #include <stdio.h>
  5. /* lib files */
  6. #include <config.h>
  7. #include <bios.h>
  8. #include <drivers/can/stdcan.h>
  9. #include <drivers/can/modules/GlobalCMD.h>
  10.  
  11. #ifndef CAN_PRINTF
  12. #define CAN_PRINTF 0
  13. #endif
  14.  
  15. void CanPrintf_Init(void);
  16. int CanPutChar(char c, FILE* stream);
  17.  
  18. #endif /*CANPRINTF_H_*/
  19.