Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
301 B

  1. /*
  2. DEBUG MODULE
  3. */
  4. #pragma once
  5. extern "C" {
  6. void custom_crash_callback(struct rst_info*, uint32_t, uint32_t);
  7. }
  8. class PrintRaw;
  9. class PrintHex;
  10. bool debugLogBuffer();
  11. void debugSend(const char* format, ...);
  12. void debugSend_P(PGM_P format_P, ...);
  13. void debugWebSetup();
  14. void debugSetup();