2001-10-15 02:46:59 +00:00
|
|
|
/*
|
2002-01-12 01:51:35 +00:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
2001-10-15 02:46:59 +00:00
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY BRIAN S. DEAN ``AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BRIAN S. DEAN BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
|
|
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
|
|
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
%{
|
|
|
|
/* need this for the call to atof() below */
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "y.tab.h"
|
|
|
|
#include "lists.h"
|
|
|
|
|
|
|
|
extern int lineno;
|
|
|
|
extern char * infile;
|
|
|
|
|
|
|
|
void pyytext(void);
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
DIGIT [0-9]
|
|
|
|
HEXDIGIT [0-9a-fA-F]
|
|
|
|
ID [_a-zA-Z][_a-zA-Z0-9]*
|
|
|
|
SIGN [+-]
|
|
|
|
|
|
|
|
%x str
|
|
|
|
%x incl
|
|
|
|
%x comment
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
{SIGN}*{DIGIT}+ { yylval = number(yytext); return TKN_NUMBER; }
|
|
|
|
{SIGN}*{DIGIT}+"."{DIGIT}* { yylval = number(yytext); return TKN_NUMBER; }
|
|
|
|
{SIGN}*"."{DIGIT}* { yylval = number(yytext); return TKN_NUMBER; }
|
|
|
|
|
|
|
|
"\"" { string_buf_ptr = string_buf; BEGIN(str); }
|
|
|
|
|
|
|
|
0x{HEXDIGIT}+ { yylval = hexnumber(yytext); return TKN_NUMBER; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# { /* The following eats '#' style comments to end of line */
|
|
|
|
BEGIN(comment); }
|
|
|
|
<comment>[^\n] /* eat comments */
|
|
|
|
<comment>\n { lineno++; BEGIN(INITIAL); }
|
|
|
|
|
|
|
|
|
|
|
|
"/*" { /* The following eats multiline C style comments */
|
|
|
|
int c;
|
|
|
|
int comment_start;
|
|
|
|
|
|
|
|
comment_start = lineno;
|
|
|
|
while (1) {
|
|
|
|
while (((c = input()) != '*') && (c != EOF)) {
|
|
|
|
/* eat up text of comment, but keep counting lines */
|
|
|
|
if (c == '\n')
|
|
|
|
lineno++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '*') {
|
|
|
|
while ((c = input()) == '*')
|
|
|
|
;
|
|
|
|
if (c == '/')
|
|
|
|
break; /* found the end */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == EOF) {
|
|
|
|
fprintf(stderr, "error at %s:%d: EOF in comment\n",
|
|
|
|
infile, lineno);
|
|
|
|
fprintf(stderr, " comment started on line %d\n",
|
|
|
|
comment_start);
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<str>{
|
|
|
|
\" { *string_buf_ptr = 0; string_buf_ptr = string_buf;
|
|
|
|
yylval = string(string_buf_ptr); BEGIN(INITIAL); return TKN_STRING; }
|
|
|
|
\\n *string_buf_ptr++ = '\n';
|
|
|
|
\\t *string_buf_ptr++ = '\t';
|
|
|
|
\\r *string_buf_ptr++ = '\r';
|
|
|
|
\\b *string_buf_ptr++ = '\b';
|
|
|
|
\\f *string_buf_ptr++ = '\f';
|
|
|
|
\\(.|\n) *(string_buf_ptr++) = yytext[1];
|
|
|
|
[^\\\n\"]+ { char *yptr = yytext; while (*yptr)
|
|
|
|
*(string_buf_ptr++) = *(yptr++); }
|
|
|
|
\n { fprintf(stderr, "error at line %d: unterminated character constant\n",
|
|
|
|
lineno);
|
|
|
|
exit(1); }
|
|
|
|
}
|
|
|
|
|
2001-10-16 23:32:30 +00:00
|
|
|
bank_size { yylval=NULL; return K_PAGE_SIZE; }
|
|
|
|
banked { yylval=NULL; return K_PAGED; }
|
2001-10-14 23:17:26 +00:00
|
|
|
buff { yylval=NULL; return K_BUFF; }
|
|
|
|
chip_erase_delay { yylval=NULL; return K_CHIP_ERASE_DELAY; }
|
|
|
|
desc { yylval=NULL; return K_DESC; }
|
2002-12-01 04:30:01 +00:00
|
|
|
devicecode { yylval=NULL; return K_DEVICECODE; }
|
2001-10-14 23:17:26 +00:00
|
|
|
eeprom { yylval=NULL; return K_EEPROM; }
|
|
|
|
errled { yylval=NULL; return K_ERRLED; }
|
|
|
|
flash { yylval=NULL; return K_FLASH; }
|
|
|
|
id { yylval=NULL; return K_ID; }
|
|
|
|
max_write_delay { yylval=NULL; return K_MAX_WRITE_DELAY; }
|
|
|
|
min_write_delay { yylval=NULL; return K_MIN_WRITE_DELAY; }
|
|
|
|
miso { yylval=NULL; return K_MISO; }
|
|
|
|
mosi { yylval=NULL; return K_MOSI; }
|
2001-10-16 23:32:30 +00:00
|
|
|
num_banks { yylval=NULL; return K_NUM_PAGES; }
|
|
|
|
num_pages { yylval=NULL; return K_NUM_PAGES; }
|
|
|
|
page_size { yylval=NULL; return K_PAGE_SIZE; }
|
|
|
|
paged { yylval=NULL; return K_PAGED; }
|
2001-10-14 23:17:26 +00:00
|
|
|
part { yylval=NULL; return K_PART; }
|
|
|
|
pgmled { yylval=NULL; return K_PGMLED; }
|
2002-11-30 14:09:12 +00:00
|
|
|
ppi { yylval=NULL; return K_PPI; }
|
2001-10-14 23:17:26 +00:00
|
|
|
programmer { yylval=NULL; return K_PROGRAMMER; }
|
2002-11-30 14:09:12 +00:00
|
|
|
pwroff_after_write { yylval=NULL; return K_PWROFF_AFTER_WRITE; }
|
2001-10-14 23:17:26 +00:00
|
|
|
rdyled { yylval=NULL; return K_RDYLED; }
|
|
|
|
readback_p1 { yylval=NULL; return K_READBACK_P1; }
|
|
|
|
readback_p2 { yylval=NULL; return K_READBACK_P2; }
|
|
|
|
reset { yylval=NULL; return K_RESET; }
|
|
|
|
sck { yylval=NULL; return K_SCK; }
|
|
|
|
size { yylval=NULL; return K_SIZE; }
|
2002-11-30 14:09:12 +00:00
|
|
|
stk500 { yylval=NULL; return K_STK500; }
|
|
|
|
type { yylval=NULL; return K_TYPE; }
|
2001-10-14 23:17:26 +00:00
|
|
|
vcc { yylval=NULL; return K_VCC; }
|
|
|
|
vfyled { yylval=NULL; return K_VFYLED; }
|
|
|
|
|
2001-11-21 02:46:55 +00:00
|
|
|
read { yylval=new_token(K_READ); return K_READ; }
|
|
|
|
write { yylval=new_token(K_WRITE); return K_WRITE; }
|
|
|
|
read_lo { yylval=new_token(K_READ_LO); return K_READ_LO; }
|
|
|
|
read_hi { yylval=new_token(K_READ_HI); return K_READ_HI; }
|
|
|
|
write_lo { yylval=new_token(K_WRITE_LO); return K_WRITE_LO; }
|
|
|
|
write_hi { yylval=new_token(K_WRITE_HI); return K_WRITE_HI; }
|
|
|
|
loadpage_lo { yylval=new_token(K_LOADPAGE_LO); return K_LOADPAGE_LO; }
|
|
|
|
loadpage_hi { yylval=new_token(K_LOADPAGE_HI); return K_LOADPAGE_HI; }
|
|
|
|
writepage { yylval=new_token(K_WRITEPAGE); return K_WRITEPAGE; }
|
|
|
|
chip_erase { yylval=new_token(K_CHIP_ERASE); return K_CHIP_ERASE; }
|
|
|
|
pgm_enable { yylval=new_token(K_PGM_ENABLE); return K_PGM_ENABLE; }
|
|
|
|
|
|
|
|
memory { yylval=NULL; return K_MEMORY; }
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
no { yylval=new_token(K_NO); return K_NO; }
|
|
|
|
yes { yylval=new_token(K_YES); return K_YES; }
|
|
|
|
|
|
|
|
"," { yylval = NULL; pyytext(); return TKN_COMMA; }
|
|
|
|
"=" { yylval = NULL; pyytext(); return TKN_EQUAL; }
|
|
|
|
";" { yylval = NULL; pyytext(); return TKN_SEMI; }
|
|
|
|
|
|
|
|
"\n" { lineno++; }
|
|
|
|
[ \t]+ /* ignore whitespace */
|
|
|
|
|
2001-10-15 00:11:56 +00:00
|
|
|
c: { fprintf(stderr, "error at %s:%d: possible old-style config file entry\n",
|
|
|
|
infile, lineno);
|
|
|
|
fprintf(stderr, " Update your config file (see %s%s for a sample)\n",
|
2003-02-06 05:13:32 +00:00
|
|
|
CONFIG_DIR, "/avrdude.conf.sample");
|
2001-10-15 00:11:56 +00:00
|
|
|
exit(1); }
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
. { fprintf(stderr, "error at %s:%d unrecognized character: \"%s\"\n",
|
|
|
|
infile, lineno, yytext); exit(1); }
|
|
|
|
|
|
|
|
%%
|
|
|
|
|