2001-10-15 02:46:59 +00:00
|
|
|
/*
|
2003-02-08 04:17:25 +00:00
|
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
2004-12-22 01:52:45 +00:00
|
|
|
* Copyright (C) 2000-2004 Brian S. Dean <bsd@bsdhome.com>
|
2001-10-15 02:46:59 +00:00
|
|
|
*
|
2003-02-06 20:02:33 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2001-10-15 02:46:59 +00:00
|
|
|
*
|
2003-02-06 20:02:33 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2001-10-15 02:46:59 +00:00
|
|
|
*
|
2003-02-06 20:02:33 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-10-15 02:46:59 +00:00
|
|
|
*/
|
|
|
|
|
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"
|
2003-02-14 20:34:03 +00:00
|
|
|
#include "config_gram.h"
|
2001-10-14 23:17:26 +00:00
|
|
|
#include "lists.h"
|
|
|
|
|
|
|
|
extern int lineno;
|
|
|
|
extern char * infile;
|
|
|
|
|
|
|
|
void pyytext(void);
|
|
|
|
|
2003-02-12 17:46:24 +00:00
|
|
|
#define YY_NO_UNPUT
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
DIGIT [0-9]
|
|
|
|
HEXDIGIT [0-9a-fA-F]
|
|
|
|
ID [_a-zA-Z][_a-zA-Z0-9]*
|
|
|
|
SIGN [+-]
|
|
|
|
|
2005-11-01 23:02:06 +00:00
|
|
|
%x strng
|
2001-10-14 23:17:26 +00:00
|
|
|
%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; }
|
|
|
|
|
2005-11-01 23:02:06 +00:00
|
|
|
"\"" { string_buf_ptr = string_buf; BEGIN(strng); }
|
2001-10-14 23:17:26 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-01 23:02:06 +00:00
|
|
|
<strng>{
|
2001-10-14 23:17:26 +00:00
|
|
|
\" { *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); }
|
|
|
|
}
|
|
|
|
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
allowfullpagebitstream { yylval=NULL; return K_ALLOWFULLPAGEBITSTREAM; }
|
|
|
|
avr910 { yylval=NULL; return K_AVR910; }
|
|
|
|
avr910_devcode { yylval=NULL; return K_AVR910_DEVCODE; }
|
2001-10-16 23:32:30 +00:00
|
|
|
bank_size { yylval=NULL; return K_PAGE_SIZE; }
|
|
|
|
banked { yylval=NULL; return K_PAGED; }
|
2004-01-03 18:36:44 +00:00
|
|
|
baudrate { yylval=NULL; return K_BAUDRATE; }
|
2003-02-20 14:11:34 +00:00
|
|
|
bs2 { yylval=NULL; return K_BS2; }
|
2001-10-14 23:17:26 +00:00
|
|
|
buff { yylval=NULL; return K_BUFF; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
butterfly { yylval=NULL; return K_BUTTERFLY; }
|
2001-10-14 23:17:26 +00:00
|
|
|
chip_erase_delay { yylval=NULL; return K_CHIP_ERASE_DELAY; }
|
|
|
|
desc { yylval=NULL; return K_DESC; }
|
2003-02-21 18:46:51 +00:00
|
|
|
default_parallel { yylval=NULL; return K_DEFAULT_PARALLEL; }
|
2003-02-21 21:07:43 +00:00
|
|
|
default_programmer { yylval=NULL; return K_DEFAULT_PROGRAMMER; }
|
2003-02-21 18:46:51 +00:00
|
|
|
default_serial { yylval=NULL; return K_DEFAULT_SERIAL; }
|
2002-12-01 04:30:01 +00:00
|
|
|
devicecode { yylval=NULL; return K_DEVICECODE; }
|
Quite some cleanup of the JTAG ICE mkII stuff.
. Implement the new EECRAddress field in the device descriptor that is
required by the 4.x firmware; make an uneducated guess about what
firmware requires what length of device descriptor -- perhaps Atmel
can be convinced to publish an official matrix for that.
. Specify EECR in the config file where required. Obviously, only
locations that differ from the 0x3c default are mentioned in the
XML files, so by now, this only affects the AT90CAN128 for us.
. After clarification with Atmel, EnablePageProgramming should really
default to 1, and only cleared if specified by an XML parameter. So
far, only the XML files for the ATmega256x and ATmega406 do specify
it at all, and they specify a 1, too.
. Drop the entire OCDEN fuse heuristic. If OCDEN is unprogrammed at
startup, issue a warning that single-byte EEPROM updates won't be
possible. Leave it to the user to program the fuse if desired.
That way, we won't run into any issue of prematurely wearing out the
hfuse EEPROM cell. Interestingly enough, this also solved the
problem of the target not restarting from scratch upon sign-off.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@461 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-11 20:06:23 +00:00
|
|
|
eecr { yylval=NULL; return K_EECR; }
|
2001-10-14 23:17:26 +00:00
|
|
|
eeprom { yylval=NULL; return K_EEPROM; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
enablepageprogramming { yylval=NULL; return K_ENABLEPAGEPROGRAMMING; }
|
2001-10-14 23:17:26 +00:00
|
|
|
errled { yylval=NULL; return K_ERRLED; }
|
|
|
|
flash { yylval=NULL; return K_FLASH; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
has_jtag { yylval=NULL; return K_HAS_JTAG; }
|
2001-10-14 23:17:26 +00:00
|
|
|
id { yylval=NULL; return K_ID; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
idr { yylval=NULL; return K_IDR; }
|
|
|
|
jtagmkii { yylval=NULL; return K_JTAG_MKII; }
|
2001-10-14 23:17:26 +00:00
|
|
|
max_write_delay { yylval=NULL; return K_MAX_WRITE_DELAY; }
|
2003-02-21 17:24:47 +00:00
|
|
|
memory { yylval=NULL; return K_MEMORY; }
|
2001-10-14 23:17:26 +00:00
|
|
|
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; }
|
2003-02-20 14:11:34 +00:00
|
|
|
pagel { yylval=NULL; return K_PAGEL; }
|
2003-02-20 19:46:23 +00:00
|
|
|
par { yylval=NULL; return K_PAR; }
|
|
|
|
parallel { yylval=NULL; return K_PARALLEL; }
|
2001-10-14 23:17:26 +00:00
|
|
|
part { yylval=NULL; return K_PART; }
|
|
|
|
pgmled { yylval=NULL; return K_PGMLED; }
|
|
|
|
programmer { yylval=NULL; return K_PROGRAMMER; }
|
2002-11-30 14:09:12 +00:00
|
|
|
pwroff_after_write { yylval=NULL; return K_PWROFF_AFTER_WRITE; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
rampz { yylval=NULL; return K_RAMPZ; }
|
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; }
|
2003-02-21 17:24:47 +00:00
|
|
|
retry_pulse { yylval=NULL; return K_RETRY_PULSE; }
|
2005-09-18 20:12:23 +00:00
|
|
|
serbb { yylval=NULL; return K_SERBB; }
|
2003-02-20 19:46:23 +00:00
|
|
|
serial { yylval=NULL; return K_SERIAL; }
|
2001-10-14 23:17:26 +00:00
|
|
|
size { yylval=NULL; return K_SIZE; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
spmcr { yylval=NULL; return K_SPMCR; }
|
2002-11-30 14:09:12 +00:00
|
|
|
stk500 { yylval=NULL; return K_STK500; }
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
stk500v2 { yylval=NULL; return K_STK500V2; }
|
|
|
|
stk500_devcode { yylval=NULL; return K_STK500_DEVCODE; }
|
2002-11-30 14:09:12 +00:00
|
|
|
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; }
|
|
|
|
|
Mega-commit to bring in both, the STK500v2 support from Erik
Walthinsen, as well as JTAG ICE mkII support (by me).
Erik's submission has been cleaned up a little bit, mostly to add his
name and the current year to the copyright of the new file, remove
trailing white space before importing the files, and fix the minor
syntax errors in his avrdude.conf.in additions (missing semicolons).
The JTAG ICE mkII support should be considered alpha to beta quality
at this point. Few things are still to be done, like defering the
hfuse (OCDEN) tweaks until they are really required. Also, for
reasons not yet known, the target MCU doesn't start to run after
signing off from the ICE, it needs a power-cycle first (at least on my
STK500).
Note that for the JTAG ICE, I did change a few things in the internal
API. Notably I made the serial receive timeout configurable by the
backends via an exported variable (done in both the Posix and the
Win32 implementation), and I made the serial_recv() function return a
-1 instead of bailing out with exit(1) upon encountering a receive
timeout (currently only done in the Posix implementation). Both
measures together allow me to receive a datastreem from the ICE at 115
kbps on a somewhat lossy PCI multi-UART card that occasionally drops a
character. The JTAG ICE mkII protocol has enough of safety layers to
allow recovering from these events, but the previous code wasn't
prepared for any kind of recovery. The Win32 change for this still
has to be done, and the traditional drivers need to be converted to
exit(1) upon encountering a timeout (as they're now getting a -1
returned they didn't see before in that case).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@451 81a1dc3b-b13d-400b-aceb-764788c761c2
2005-05-10 19:17:12 +00:00
|
|
|
timeout { yylval=NULL; return K_TIMEOUT; }
|
|
|
|
stabdelay { yylval=NULL; return K_STABDELAY; }
|
|
|
|
cmdexedelay { yylval=NULL; return K_CMDEXEDELAY; }
|
|
|
|
synchloops { yylval=NULL; return K_SYNCHLOOPS; }
|
|
|
|
bytedelay { yylval=NULL; return K_BYTEDELAY; }
|
|
|
|
pollvalue { yylval=NULL; return K_POLLVALUE; }
|
|
|
|
pollindex { yylval=NULL; return K_POLLINDEX; }
|
|
|
|
predelay { yylval=NULL; return K_PREDELAY; }
|
|
|
|
postdelay { yylval=NULL; return K_POSTDELAY; }
|
|
|
|
pollmethod { yylval=NULL; return K_POLLMETHOD; }
|
|
|
|
mode { yylval=NULL; return K_MODE; }
|
|
|
|
delay { yylval=NULL; return K_DELAY; }
|
|
|
|
blocksize { yylval=NULL; return K_BLOCKSIZE; }
|
|
|
|
readsize { yylval=NULL; return K_READSIZE; }
|
|
|
|
|
|
|
|
|
2003-02-21 17:24:47 +00:00
|
|
|
|
|
|
|
dedicated { yylval=new_token(K_DEDICATED); return K_DEDICATED; }
|
|
|
|
io { yylval=new_token(K_IO); return K_IO; }
|
|
|
|
pseudo { yylval=new_token(K_PSEUDO); return K_PSEUDO; }
|
|
|
|
|
|
|
|
reset { yylval=new_token(K_RESET); return K_RESET; }
|
|
|
|
sck { yylval=new_token(K_SCK); return K_SCK; }
|
|
|
|
|
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; }
|
|
|
|
|
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; }
|
2005-09-18 20:12:23 +00:00
|
|
|
"~" { yylval = NULL; pyytext(); return TKN_TILDE; }
|
2001-10-14 23:17:26 +00:00
|
|
|
|
|
|
|
"\n" { lineno++; }
|
2003-02-27 16:42:56 +00:00
|
|
|
[ \r\t]+ /* ignore whitespace */
|
2001-10-14 23:17:26 +00:00
|
|
|
|
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); }
|
|
|
|
|
|
|
|
%%
|
|
|
|
|