2001-10-15 02:49:10 +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:49:10 +00:00
|
|
|
*
|
2003-02-06 19:08: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:49:10 +00:00
|
|
|
*
|
2003-02-06 19:08: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:49:10 +00:00
|
|
|
*
|
2003-02-06 19:08:33 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2012-11-20 14:03:50 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-10-15 02:49:10 +00:00
|
|
|
*/
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
#ifndef config_h
|
|
|
|
#define config_h
|
2001-10-14 23:17:26 +00:00
|
|
|
|
|
|
|
#include "lists.h"
|
|
|
|
#include "pindefs.h"
|
|
|
|
#include "avr.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_STR_CONST 1024
|
|
|
|
|
2012-11-04 17:18:59 +00:00
|
|
|
enum { V_NONE, V_NUM, V_NUM_REAL, V_STR };
|
2001-10-14 23:17:26 +00:00
|
|
|
typedef struct value_t {
|
|
|
|
int type;
|
2012-11-04 17:18:59 +00:00
|
|
|
/*union { TODO: use an anonymous union here ? */
|
|
|
|
int number;
|
|
|
|
double number_real;
|
|
|
|
char * string;
|
|
|
|
/*};*/
|
2001-10-14 23:17:26 +00:00
|
|
|
} VALUE;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct token_t {
|
|
|
|
int primary;
|
|
|
|
VALUE value;
|
|
|
|
} TOKEN;
|
2005-11-02 21:03:51 +00:00
|
|
|
typedef struct token_t *token_p;
|
2001-10-14 23:17:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern FILE * yyin;
|
|
|
|
extern PROGRAMMER * current_prog;
|
|
|
|
extern AVRPART * current_part;
|
2001-11-21 02:46:55 +00:00
|
|
|
extern AVRMEM * current_mem;
|
2001-10-14 23:17:26 +00:00
|
|
|
extern int lineno;
|
2007-01-30 13:41:54 +00:00
|
|
|
extern const char * infile;
|
2001-10-14 23:17:26 +00:00
|
|
|
extern LISTID string_list;
|
|
|
|
extern LISTID number_list;
|
2007-01-24 22:43:46 +00:00
|
|
|
extern LISTID part_list;
|
|
|
|
extern LISTID programmers;
|
2003-02-21 21:07:43 +00:00
|
|
|
extern char default_programmer[];
|
2003-02-21 18:46:51 +00:00
|
|
|
extern char default_parallel[];
|
|
|
|
extern char default_serial[];
|
2011-08-26 20:30:26 +00:00
|
|
|
extern double default_bitclock;
|
2003-02-21 18:46:51 +00:00
|
|
|
|
2012-01-30 17:08:48 +00:00
|
|
|
/* This name is fixed, it's only here for symmetry with
|
|
|
|
* default_parallel and default_serial. */
|
|
|
|
#define DEFAULT_USB "usb"
|
2003-02-21 18:46:51 +00:00
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
|
2003-02-14 20:34:03 +00:00
|
|
|
#if !defined(HAS_YYSTYPE)
|
2005-11-02 21:03:51 +00:00
|
|
|
#define YYSTYPE token_p
|
2001-10-14 23:17:26 +00:00
|
|
|
#endif
|
|
|
|
extern YYSTYPE yylval;
|
|
|
|
|
|
|
|
extern char string_buf[MAX_STR_CONST];
|
|
|
|
extern char *string_buf_ptr;
|
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
int yyparse(void);
|
|
|
|
|
|
|
|
|
|
|
|
int init_config(void);
|
|
|
|
|
2012-01-17 20:56:37 +00:00
|
|
|
void cleanup_config(void);
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
TOKEN * new_token(int primary);
|
|
|
|
|
|
|
|
void free_token(TOKEN * tkn);
|
|
|
|
|
|
|
|
void free_tokens(int n, ...);
|
|
|
|
|
|
|
|
TOKEN * number(char * text);
|
|
|
|
|
2012-11-04 17:18:59 +00:00
|
|
|
TOKEN * number_real(char * text);
|
|
|
|
|
2001-10-14 23:17:26 +00:00
|
|
|
TOKEN * hexnumber(char * text);
|
|
|
|
|
|
|
|
TOKEN * string(char * text);
|
|
|
|
|
|
|
|
TOKEN * keyword(int primary);
|
|
|
|
|
|
|
|
void print_token(TOKEN * tkn);
|
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
void pyytext(void);
|
2001-10-14 23:17:26 +00:00
|
|
|
|
2007-01-30 13:41:54 +00:00
|
|
|
char * dup_string(const char * str);
|
2001-10-14 23:17:26 +00:00
|
|
|
|
2007-01-30 13:41:54 +00:00
|
|
|
int read_config(const char * file);
|
2001-10-14 23:17:26 +00:00
|
|
|
|
2007-01-24 22:43:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2001-10-14 23:17:26 +00:00
|
|
|
|
|
|
|
#endif
|