Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.

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