Updating Cygwin build environment for AVR and ARM.

This commit is contained in:
Jacob Alexander 2014-04-09 20:06:19 -07:00
parent 97308d3749
commit 50d1f8c7e6
4 changed files with 18 additions and 21 deletions

View file

@ -82,7 +82,11 @@
// Static String Printing
#if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
#define print(s) _print(PSTR(s))
#else
#define print(s) _print(s)
#endif
void _print(const char *s);
void printstrs( char* first, ... );