Keyboard firmwares for Atmel AVR and Cortex-M
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.

print.h 478B

12345678910111213141516171819202122
  1. #ifndef PRINT_H__
  2. #define PRINT_H__ 1
  3. #include <stdbool.h>
  4. #include <avr/pgmspace.h>
  5. #include "usb_debug.h"
  6. bool print_enable;
  7. // this macro allows you to write print("some text") and
  8. // the string is automatically placed into flash memory :)
  9. #define print(s) print_P(PSTR(s))
  10. #define pchar(c) usb_debug_putchar(c)
  11. void print_P(const char *s);
  12. void phex(unsigned char c);
  13. void phex16(unsigned int i);
  14. void pbin(unsigned char c);
  15. void pbin_reverse(unsigned char c);
  16. #endif