mmu2_log.cpp 328 B

1234567891011121314151617
  1. #include "mmu2_log.h"
  2. namespace MMU2 {
  3. void LogErrorEvent_P(const char *msg){
  4. SERIAL_ECHO_START; //!@todo Decide MMU2 errors on serial line
  5. SERIAL_MMU2();
  6. SERIAL_ECHOLNRPGM(msg);
  7. }
  8. void LogEchoEvent_P(const char *msg){
  9. SERIAL_ECHO_START;
  10. SERIAL_MMU2();
  11. SERIAL_ECHOLNRPGM(msg);
  12. }
  13. } // namespace MMU2