PROGMEM changes needed for newer avr-gcc compiler

This commit is contained in:
David Kopf 2012-02-21 11:10:57 -05:00
parent 5fdcd6bc13
commit 6e45dfe5ff
14 changed files with 51 additions and 70 deletions

View file

@ -15,7 +15,7 @@ delay(void)
}
/*-----------------------------------------------------------------------------------*/
static char buffer[40];
static prog_char hextab[] =
static const char hextab[] PROGMEM =
{'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
/*-----------------------------------------------------------------------------------*/
static void
@ -60,7 +60,7 @@ debug_print16(unsigned short v)
}
/*-----------------------------------------------------------------------------------*/
void
debug_print(prog_char *str)
debug_print(char *str)
{
/* unsigned char i;